<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to split Dimension Label in to two lines in barchart in Qliksense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425718#M96121</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;How to split Dimension Label in to two lines in barchart in Qliksense.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="indra_0-1709280163151.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/161047i87E0A54524112566/image-size/medium?v=v2&amp;amp;px=400" role="button" title="indra_0-1709280163151.png" alt="indra_0-1709280163151.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Mar 2024 08:03:10 GMT</pubDate>
    <dc:creator>indra</dc:creator>
    <dc:date>2024-03-01T08:03:10Z</dc:date>
    <item>
      <title>How to split Dimension Label in to two lines in barchart in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425718#M96121</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;How to split Dimension Label in to two lines in barchart in Qliksense.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="indra_0-1709280163151.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/161047i87E0A54524112566/image-size/medium?v=v2&amp;amp;px=400" role="button" title="indra_0-1709280163151.png" alt="indra_0-1709280163151.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 08:03:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425718#M96121</guid>
      <dc:creator>indra</dc:creator>
      <dc:date>2024-03-01T08:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to split Dimension Label in to two lines in barchart in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425731#M96123</link>
      <description>&lt;P&gt;You can use Chr(10) to add linebreaks to the text.&lt;/P&gt;
&lt;P&gt;If you need it as a dimension, wrap it in an Aggr() over the original dimension so the filters are applied correctly.&lt;/P&gt;
&lt;P&gt;Here is a small example that adds a linebreak after the 4th word. You can be creative in regards to where, how and how many linebreaks you want to add.&lt;/P&gt;
&lt;PRE&gt;=Aggr(Left(LongLabel, FindOneOf(LongLabel, ' ', 4) - 1) &amp;amp; Chr(10) &amp;amp; Right(LongLabel, Len(LongLabel) - FindOneOf(LongLabel, ' ', 4)), LongLabel)&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Mar 2024 08:25:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425731#M96123</guid>
      <dc:creator>LRuCelver</dc:creator>
      <dc:date>2024-03-01T08:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to split Dimension Label in to two lines in barchart in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425738#M96125</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I used Chr(10), but not getting expected output. By using the above logic also not getting the expected result.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 08:33:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425738#M96125</guid>
      <dc:creator>indra</dc:creator>
      <dc:date>2024-03-01T08:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to split Dimension Label in to two lines in barchart in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425744#M96126</link>
      <description>&lt;P&gt;Chr(10) will not work, you have to extend the object to view full text&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 08:43:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425744#M96126</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2024-03-01T08:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to split Dimension Label in to two lines in barchart in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425759#M96131</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The label length is big. so we extended the object as much possible, but we are not able to extend object upto sheet ending, due to graph is not good to see users.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 09:01:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425759#M96131</guid>
      <dc:creator>indra</dc:creator>
      <dc:date>2024-03-01T09:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to split Dimension Label in to two lines in barchart in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425889#M96140</link>
      <description>&lt;P&gt;You try below link script&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Displaying-long-labels-on-chart-X-axis/td-p/358904" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/Displaying-long-labels-on-chart-X-axis/td-p/358904&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 12:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-split-Dimension-Label-in-to-two-lines-in-barchart-in/m-p/2425889#M96140</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2024-03-01T12:37:38Z</dc:date>
    </item>
  </channel>
</rss>

