<?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: Showing a chart when another chart is selected in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742956#M1034372</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone for your help. The container option worked well.&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jan 2015 14:26:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-01-29T14:26:52Z</dc:date>
    <item>
      <title>Showing a chart when another chart is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742952#M1034368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to only show a chart when another chart is opened.&lt;/P&gt;&lt;P&gt;I see there is a conditional show option in the 'Layout' tab of the chart properties dialogue box.&amp;nbsp; Could I use this to write a bit of code to show the chart if another chart is selected (not minimised)?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 16:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742952#M1034368</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-21T16:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Showing a chart when another chart is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742953#M1034369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately there is no event "chart minimized" or "chart maximized".&amp;nbsp; The best I can think of is using a button (or text box) to minimize and restore the chart.&amp;nbsp; Also you need a variable that stores the current chart status.&amp;nbsp; So, create a variable vCH01Minimized.&amp;nbsp; Create a button with actions:&lt;BR /&gt;Minimize Object, and the object ID is calculated:&amp;nbsp; =if(vCH01Minimized=0, 'CH01')&lt;BR /&gt;Restore Object, object ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =if(vCH01Minimized=1, 'CH01')&lt;BR /&gt;Set Variable, where variable is vCH01Minimized, and value: =if(vCH01Minimized=0,1,0)&lt;/P&gt;&lt;P&gt;Use only this button to minimize and restore CH01, so the variable will change.&amp;nbsp; Use this variable as show condition for the second chart:&lt;/P&gt;&lt;P&gt;vCH01Minimized=0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 17:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742953#M1034369</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-21T17:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Showing a chart when another chart is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742954#M1034370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use conditional display available at layout page of setting of an object.&lt;/P&gt;&lt;P&gt;Set a variable that &lt;STRONG&gt;vDisplay&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Now when Chart 1 is selected then set it 1&lt;/P&gt;&lt;P&gt;Now on conditional layout expression write &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(vDisplay=1,1,0)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 17:49:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742954#M1034370</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2015-01-21T17:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Showing a chart when another chart is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742955#M1034371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe with a grid container (if you want show/hide or minimize/maximize 2 charts together)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="image-1 jive-image" height="134" src="https://community.qlik.com/legacyfs/online/75855_1.png" style="height: 133.266547406082px; width: 291px;" width="291" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 18:25:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742955#M1034371</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-01-21T18:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Showing a chart when another chart is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742956#M1034372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone for your help. The container option worked well.&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 14:26:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Showing-a-chart-when-another-chart-is-selected/m-p/742956#M1034372</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-29T14:26:52Z</dc:date>
    </item>
  </channel>
</rss>

