<?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 Re: How to mark specific points in a line chart? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420378#M95625</link>
    <description>&lt;P&gt;If(aggr(rank(sum(sal) , store)&amp;lt;=15, a,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If(aggr(rank(sum(sal) , store) &amp;gt;15 and aggr(rank(sum(sal) , store) &amp;lt;=45, b, c))&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 18 Feb 2024 06:03:54 GMT</pubDate>
    <dc:creator>anat</dc:creator>
    <dc:date>2024-02-18T06:03:54Z</dc:date>
    <item>
      <title>How to mark specific points in a line chart?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420090#M95595</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so i have a line chart, where i should sales and stores.... there are over 200 stores.&lt;/P&gt;
&lt;P&gt;I deleted the labels of the x axis, but I would just like to mark some specific points, let say, that i would like to mark the first 15 stores as a, the following 45 as b and then c... they are sorted according to the sum of sales... how could i do that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:03:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420090#M95595</guid>
      <dc:creator>Nemo1</dc:creator>
      <dc:date>2024-11-15T21:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to mark specific points in a line chart?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420378#M95625</link>
      <description>&lt;P&gt;If(aggr(rank(sum(sal) , store)&amp;lt;=15, a,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If(aggr(rank(sum(sal) , store) &amp;gt;15 and aggr(rank(sum(sal) , store) &amp;lt;=45, b, c))&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Feb 2024 06:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420378#M95625</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2024-02-18T06:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to mark specific points in a line chart?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420525#M95634</link>
      <description>&lt;P&gt;but where do i write that formula?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 07:33:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420525#M95634</guid>
      <dc:creator>Nemo1</dc:creator>
      <dc:date>2024-02-19T07:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to mark specific points in a line chart?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420568#M95642</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/285717"&gt;@Nemo1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not quite following what you are aiming for here. You say it is a line chart, but you are showing stores? Line charts should only be used when you have a continuous numeric dimension, such as date.&lt;/P&gt;
&lt;P&gt;Your best bet for marking values on a chart is probably to use the Colour property, under the Appearance menu, with an expression something like:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;if(rank(TOTAL sum(Sales),2,1)/count(TOTAL DISTINCT StoreNo) &amp;lt;= 0.1, rgb(180,0,0), &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;if(rank(TOTAL sum(Sales),2,1)/count(TOTAL DISTINCT StoreNo) &amp;lt;= 0.3, rgb(0,180,0), rgb(0,0,180)))&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;That is assuming the categorization is as per your other ticket? If not, remove the division and compare the rank values to 15 and 45 accordingly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="stevedark_0-1708331734840.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/160143iF18DD8D441BE19D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="stevedark_0-1708331734840.png" alt="stevedark_0-1708331734840.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Hope that helps.&lt;/P&gt;
&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 08:37:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-mark-specific-points-in-a-line-chart/m-p/2420568#M95642</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2024-02-19T08:37:28Z</dc:date>
    </item>
  </channel>
</rss>

