<?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: Help me on ..How to hide chart on selection in listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805376#M284330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use two expressions, one for bar, another for line. Now use enabling condition for these expressions. Check the attached qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Nov 2014 09:52:20 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2014-11-24T09:52:20Z</dc:date>
    <item>
      <title>Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805374#M284328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="71930" alt="ComboChart.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/71930_ComboChart.PNG.png" style="width: 620px; height: 380px;" /&gt;&lt;/P&gt;&lt;P&gt;i have the above combo box and i have to show sperately line chart and bar chart as according to the selection in the above listbox and hide this above combo box whenevr the selection is made in the above list box and get the following result as i am showing in the below images:&lt;IMG __jive_id="71931" alt="barchart.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/71931_barchart.PNG.png" style="width: 620px; height: 447px;" /&gt;&lt;IMG __jive_id="71932" alt="lineChart.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/71932_lineChart.PNG.png" style="width: 620px; height: 455px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 09:42:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805374#M284328</guid>
      <dc:creator />
      <dc:date>2014-11-24T09:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805375#M284329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in cinditionl show of yhe expresion set the condition Getfieldselections(mesure)=myVal ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 09:50:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805375#M284329</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-11-24T09:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805376#M284330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use two expressions, one for bar, another for line. Now use enabling condition for these expressions. Check the attached qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 09:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805376#M284330</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-11-24T09:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805377#M284331</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 GetFieldSelections() Function to Hide the Chart.&lt;/P&gt;&lt;P&gt;First, create a Variable in the Backend Script. Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vVarHide='Combo';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondly, Create 2 copies of Orginal Chart:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Original Combo Chart (Go to Properties&amp;gt; Layout&amp;gt;Conditional Expression: GetSelectedCount(Measure)='0' )&lt;/P&gt;&lt;P&gt;2) Bar Chart (Go to Properties&amp;gt; Layout&amp;gt;Conditional Expression: GetFieldSelections(Measure)='1' )&lt;/P&gt;&lt;P&gt;3) Line Chart (Go to Properties&amp;gt; Layout&amp;gt;Conditional Expression: GetFieldSelections(Measure)='2' )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See, the Attachment &amp;amp; Snapshots.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Av7eN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 10:00:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805377#M284331</guid>
      <dc:creator>aveeeeeee7en</dc:creator>
      <dc:date>2014-11-24T10:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805378#M284332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;pls send me the image file of above qvw .i am using personal edition so it is not opening here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 10:03:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805378#M284332</guid>
      <dc:creator />
      <dc:date>2014-11-24T10:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805379#M284333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Dear,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;pls send me the image file of above qvw .i am using personal edition so it is not opening here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 10:06:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805379#M284333</guid>
      <dc:creator />
      <dc:date>2014-11-24T10:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805380#M284334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a Variable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vVarHide='Combo';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the Attached Snapshots.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Av7eN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 10:18:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805380#M284334</guid>
      <dc:creator>aveeeeeee7en</dc:creator>
      <dc:date>2014-11-24T10:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805381#M284335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;Thank u so much for ur reply...but i need to keep select one value in measure listbox always either 1 or 2 as according to my another requirements.Hence the measure selectedcount will never have a value equals to zero.So in that case what i have to do to display the combo chart and then after to hide it&amp;nbsp; as according to display another chart on the same palce..pls let me know...i need a help.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 10:44:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805381#M284335</guid>
      <dc:creator />
      <dc:date>2014-11-24T10:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help me on ..How to hide chart on selection in listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805382#M284336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) For Combo Chart don't use any Conditional Expression.&lt;/P&gt;&lt;P&gt;2) Create 2 Copies of Combo chart and place it little away from the Original Chart. See below:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Pic Attach.png" class="jive-image" src="/legacyfs/online/71948_Pic Attach.png" style="width: 620px; height: 314px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Av7eN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 11:09:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-on-How-to-hide-chart-on-selection-in-listbox/m-p/805382#M284336</guid>
      <dc:creator>aveeeeeee7en</dc:creator>
      <dc:date>2014-11-24T11:09:27Z</dc:date>
    </item>
  </channel>
</rss>

