<?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 hover-text in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499000#M556686</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a chart which plots highest, lowest, and average percentages by grade on a line graph.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each data point plotted in the highest and lowest lines is a specific school district (whichever happens to be the highest or lowest in that grade).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'm looking for is &lt;STRONG&gt;some way to identify, ideally within the hover-text, which school district it is&lt;/STRONG&gt; that's holding the highest or lowest 'record' for that data point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expression for highest is &lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;max(aggr(sum(Truant)/sum(StudentCount), Grade, District))&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and lowest is &lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;min(aggr(sum(Truant)/sum(StudentCount), Grade, District))&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jul 2013 21:10:51 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-07-18T21:10:51Z</dc:date>
    <item>
      <title>Chart hover-text</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499000#M556686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a chart which plots highest, lowest, and average percentages by grade on a line graph.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each data point plotted in the highest and lowest lines is a specific school district (whichever happens to be the highest or lowest in that grade).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'm looking for is &lt;STRONG&gt;some way to identify, ideally within the hover-text, which school district it is&lt;/STRONG&gt; that's holding the highest or lowest 'record' for that data point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expression for highest is &lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;max(aggr(sum(Truant)/sum(StudentCount), Grade, District))&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and lowest is &lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;min(aggr(sum(Truant)/sum(StudentCount), Grade, District))&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 21:10:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499000#M556686</guid>
      <dc:creator />
      <dc:date>2013-07-18T21:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Chart hover-text</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499001#M556687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to add text inside the graph and see the document attached...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 02:02:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499001#M556687</guid>
      <dc:creator>jolivares</dc:creator>
      <dc:date>2013-07-19T02:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Chart hover-text</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499002#M556688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The expression to identify the District with the highest rate by Grade would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;aggr(NODISTINCT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; FirstSortedValue(District,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -aggr(sum(Truant)/sum(StudentCount), Grade, District)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;,Grade)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the lowest would be the same without the "-" on the second aggr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;aggr(NODISTINCT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; FirstSortedValue(District,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; aggr(sum(Truant)/sum(StudentCount), Grade, District)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;,Grade)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll have to play with it a bit to get the hovers to display correctly on a line chart. Maybe you'll figure it out before I do,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 05:08:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499002#M556688</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-07-19T05:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Chart hover-text</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499003#M556689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attached is a sample using popups. The hover shows both high and low districts. I haven't figured out how to display just the relevant district -- high when hovering on the high line -- and still maintain your values on data points. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 06:25:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499003#M556689</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-07-19T06:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Chart hover-text</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499004#M556690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant! That's perfect, thanks so much Rob! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 16:44:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-hover-text/m-p/499004#M556690</guid>
      <dc:creator />
      <dc:date>2013-07-19T16:44:51Z</dc:date>
    </item>
  </channel>
</rss>

