<?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: Selections in Qlik Sense Mashup in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153853#M5556</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, you can show the table if just one slice is selected and hide the table if the user select more than one slice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jun 2016 08:04:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-06-21T08:04:40Z</dc:date>
    <item>
      <title>Selections in Qlik Sense Mashup</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153852#M5555</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;I am developing a Qlik Sense mashup with a pie chart and a table objects. My requirement is whenever i click a slice in pie chart the table with associated values should appear.&lt;/P&gt;&lt;P&gt;I have placed the pie chart inside a html div and enabled display &lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;the table inside another html div and disabled dispaly initially.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens actually is the table with correct values is displayed when i click any slice of the pie chart but a table without any values is displayed when i click anywhere except the slice in the pie chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to limit the selection/click event listener to the slices of the pie chart?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 12:33:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153852#M5555</guid>
      <dc:creator />
      <dc:date>2016-06-20T12:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Selections in Qlik Sense Mashup</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153853#M5556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, you can show the table if just one slice is selected and hide the table if the user select more than one slice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 08:04:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153853#M5556</guid>
      <dc:creator />
      <dc:date>2016-06-21T08:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Selections in Qlik Sense Mashup</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153854#M5557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Yes that can be done. But the issue i face is: The table without any values is displayed even i click on the title/legend of the pie chart. I want the table to be displayed only when i click on any slice of the pie chart.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 09:30:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153854#M5557</guid>
      <dc:creator />
      <dc:date>2016-06-21T09:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Selections in Qlik Sense Mashup</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153855#M5558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would do that without a click event. You can create an hypercube with the values who are in the piechart, and in the callback display the table when one or more slices are selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function create()&lt;/P&gt;&lt;P&gt;{&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; app.createCube({&lt;/P&gt;&lt;P&gt;//create hypercube&lt;/P&gt;&lt;P&gt;},&lt;/P&gt;&lt;P&gt;&amp;nbsp; function(u){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var e=u.qHyperCube;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var selec = e.qDimensionInfo[1].qStateCounts.qSelected;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(selec ==1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //display the table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt; )};&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 09:49:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153855#M5558</guid>
      <dc:creator />
      <dc:date>2016-06-21T09:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Selections in Qlik Sense Mashup</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153856#M5559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could we use &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;createCube to create pie chart in Qlik sense mashup?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2016 21:47:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Selections-in-Qlik-Sense-Mashup/m-p/1153856#M5559</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-23T21:47:40Z</dc:date>
    </item>
  </channel>
</rss>

