<?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: Mouse-over function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21833#M775467</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, its what I did. The following is script for TextBox. When I choice a date and a product from Listbox, I can get the proportion of the sales for this product on this day. It works good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////&lt;BR /&gt;if(GetSelectedCount(Date) = 1 and GetSelectedCount(Product) = 1 , Num(Sum(Sales)/sum({&amp;lt;Product&amp;gt;}Sales), '#,#%'), 'Please choice a Date and a Product')&amp;nbsp; &lt;/P&gt;&lt;P&gt;////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////&lt;/P&gt;&lt;P&gt;Now I have also a bar diagram, in which X-Axis shows Product and Y-Axis shows sales. What I want is when&amp;nbsp; I choice a date form Listbox and put mouse point on one of&amp;nbsp; bars, the TextBox will just show me the&amp;nbsp; proportion of the sales for that product.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Problem is how can I get that proportion without click the bar, but just put mouse point on it.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2018 15:10:33 GMT</pubDate>
    <dc:creator>tomcatxx</dc:creator>
    <dc:date>2018-05-11T15:10:33Z</dc:date>
    <item>
      <title>Mouse-over function</title>
      <link>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21830#M775464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a barchart and a textbox. Who know that, when I put mouse point on a bar without click, the textbox will show the value of the bar. When I put mouse points on another bar, the value will change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21830#M775464</guid>
      <dc:creator>tomcatxx</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse-over function</title>
      <link>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21831#M775465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want to be dynamic or static? Can you explain little more&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2018 14:40:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21831#M775465</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-05-11T14:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse-over function</title>
      <link>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21832#M775466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no such action in QlikView. You will have to use an extension which reads where the mouse is and populate the expression in the text object (with a variable, maybe?) depending on where it is located. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can show different values than those of the expression (e.g.: a more descriptive text or additional data) hovering over the bars in the chart by using an expression and representing it as "Text as Pop-up" in the chart properties &amp;gt; Expressions &amp;gt; Display Options,&amp;nbsp; unchecking Bar and checking Text as Pop-up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest to take a look at branch.qlik.com where there are many extensions and maybe some of them do what you are looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2018 14:44:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21832#M775466</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-05-11T14:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse-over function</title>
      <link>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21833#M775467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, its what I did. The following is script for TextBox. When I choice a date and a product from Listbox, I can get the proportion of the sales for this product on this day. It works good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////&lt;BR /&gt;if(GetSelectedCount(Date) = 1 and GetSelectedCount(Product) = 1 , Num(Sum(Sales)/sum({&amp;lt;Product&amp;gt;}Sales), '#,#%'), 'Please choice a Date and a Product')&amp;nbsp; &lt;/P&gt;&lt;P&gt;////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////&lt;/P&gt;&lt;P&gt;Now I have also a bar diagram, in which X-Axis shows Product and Y-Axis shows sales. What I want is when&amp;nbsp; I choice a date form Listbox and put mouse point on one of&amp;nbsp; bars, the TextBox will just show me the&amp;nbsp; proportion of the sales for that product.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Problem is how can I get that proportion without click the bar, but just put mouse point on it.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2018 15:10:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21833#M775467</guid>
      <dc:creator>tomcatxx</dc:creator>
      <dc:date>2018-05-11T15:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Mouse-over function</title>
      <link>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21834#M775468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably by using the tooltips that pop up from measures in a chart (if you enable "Text as Pop-Up" in the Expressions tab in Chart properties). You can even add as much text and calculation to these tooltips as you want, by simply defining more expressions and only enabling the tooltip check box (not bar or line or symbol).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See here for examples: &lt;A href="https://community.qlik.com/message/774884"&gt;Re: additional expressions viewing in tooltip&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2018 16:26:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mouse-over-function/m-p/21834#M775468</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-05-11T16:26:42Z</dc:date>
    </item>
  </channel>
</rss>

