<?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 chart dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/chart-dimension/m-p/797139#M281603</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi dears&lt;/P&gt;&lt;P&gt;i have a line chart that shows [Sales] for each [Day], means a chart with sales as X axes and Day for y axes.&lt;/P&gt;&lt;P&gt;now, i want to let user to see [Sales] for each ''n'' day they choose dynamically. i mean i want to let them to see sales for each three days or for each seven day or ...(as they choose at the moment)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i doo that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;mana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Nov 2014 09:19:12 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-10T09:19:12Z</dc:date>
    <item>
      <title>chart dimension</title>
      <link>https://community.qlik.com/t5/QlikView/chart-dimension/m-p/797139#M281603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi dears&lt;/P&gt;&lt;P&gt;i have a line chart that shows [Sales] for each [Day], means a chart with sales as X axes and Day for y axes.&lt;/P&gt;&lt;P&gt;now, i want to let user to see [Sales] for each ''n'' day they choose dynamically. i mean i want to let them to see sales for each three days or for each seven day or ...(as they choose at the moment)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i doo that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;mana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2014 09:19:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-dimension/m-p/797139#M281603</guid>
      <dc:creator />
      <dc:date>2014-11-10T09:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: chart dimension</title>
      <link>https://community.qlik.com/t5/QlikView/chart-dimension/m-p/797140#M281604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;STEP1: Create a variable for Days&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP2: Create Text box with the created variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP3: Link the chart with Variable(which you created using Dimention Limit)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2014 09:48:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-dimension/m-p/797140#M281604</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-10T09:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: chart dimension</title>
      <link>https://community.qlik.com/t5/QlikView/chart-dimension/m-p/797141#M281605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use Class function for this and use variable to input the days value for the days interval to show on the chart please see help from the QV help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create variable x and and used it in place of the day dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creates a classification of &lt;SPAN class="Italic"&gt;expressions&lt;/SPAN&gt;. The bin width is determined by the number set as &lt;SPAN class="Italic"&gt;interval&lt;/SPAN&gt;. The result is shown as a&amp;lt;=x&amp;lt;b, where a and b are the upper and lower limits of the bin. The x can be replaced by an arbitrary string stated in &lt;SPAN class="Italic"&gt;label&lt;/SPAN&gt;. 0 is normally the default starting point of the classification. This can be changed by adding an &lt;SPAN class="Italic"&gt;offset&lt;/SPAN&gt;. &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;class( var,10 )&lt;/SPAN&gt; with &lt;SPAN class="Italic"&gt;var&lt;/SPAN&gt; = 23 returns &lt;SPAN class="Italic"&gt;'20&amp;lt;=x&amp;lt;30'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;class( var,5,'value' )&lt;/SPAN&gt; with &lt;SPAN class="Italic"&gt;var&lt;/SPAN&gt; = 23 returns &lt;SPAN class="Italic"&gt;'20&amp;lt;= value &amp;lt;25'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;class( var,10,'x',5 )&lt;/SPAN&gt; with &lt;SPAN class="Italic"&gt;var&lt;/SPAN&gt; = 23 returns &lt;SPAN class="Italic"&gt;'15&amp;lt;=x&amp;lt;25'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;Anand&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2014 09:52:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-dimension/m-p/797141#M281605</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-11-10T09:52:23Z</dc:date>
    </item>
  </channel>
</rss>

