<?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 Graphics in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Graphics/m-p/818926#M1259805</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a line graphic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x as months&lt;/P&gt;&lt;P&gt;y as number of sales&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i display the orders placed by the customers and the orders the customers sent back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible that the user determines whether he wants to see just orders placed, or just orders sent back or both in the same graphic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
    <dc:creator />
    <dc:date>2026-01-26T18:19:17Z</dc:date>
    <item>
      <title>Graphics</title>
      <link>https://community.qlik.com/t5/QlikView/Graphics/m-p/818926#M1259805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a line graphic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x as months&lt;/P&gt;&lt;P&gt;y as number of sales&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i display the orders placed by the customers and the orders the customers sent back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible that the user determines whether he wants to see just orders placed, or just orders sent back or both in the same graphic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Graphics/m-p/818926#M1259805</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics</title>
      <link>https://community.qlik.com/t5/QlikView/Graphics/m-p/818927#M1259807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;hi Ama,&lt;/P&gt;&lt;P&gt;if i am understanding Correctly you want to create a graph with a single line either for 'orders placed' or for 'orders sent back ' if so you can create a container object and palce 2 graphs in it and the user can select the tabon the bottom of the container object to toggle between the two graphs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can provide more info regarding the data then i can provide more ideas to do so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 22:05:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Graphics/m-p/818927#M1259807</guid>
      <dc:creator>saurabh5</dc:creator>
      <dc:date>2014-12-11T22:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics</title>
      <link>https://community.qlik.com/t5/QlikView/Graphics/m-p/818928#M1259808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That can be done using a fairly recent option among the thousand chart properties. It's called "Conditional show" and it belongs to every expression you defined in the chart properties. Using this field, you can make every expression pop up provided one or more conditions are met.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The trick is tho provide those suitable conditions. Now you may have to supply some additional hints. Let's assume that a user wants to select the preferred expression from a listbox. To create this listbox, add the following to your scripts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%GraphSelectionTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%GraphSelection&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Orders Placed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Orders Returned&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reload and put a listbox on the chart sheet, displaying %GraphSelection. You can modify the layout into LED checkboxes for a nicer visual appearance if you like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now add the following conditional show to the expression for Orders Placed (enable the checkbox):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;substringcount(GetFieldSelections([%GraphSelection], ',', 10), 'Orders Placed') &amp;gt; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and add the following conditional show to the expression for Orders Returned:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;substringcount(GetFieldSelections([%GraphSelection], ',', 10), 'Orders Returned') &amp;gt; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save and go ahead: try it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 22:24:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Graphics/m-p/818928#M1259808</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2014-12-11T22:24:24Z</dc:date>
    </item>
  </channel>
</rss>

