<?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 Query regarding bar graph in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237391#M88448</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found a soln for Stack bar. You can check it out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Mar 2011 07:28:16 GMT</pubDate>
    <dc:creator>deepakk</dc:creator>
    <dc:date>2011-03-03T07:28:16Z</dc:date>
    <item>
      <title>Query regarding bar graph</title>
      <link>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237388#M88445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an requirement of changing bar chart between Groped and Stacked type.&lt;/P&gt;&lt;P&gt;Is it possible to switch the chart type between grouped and stacked on button click(using single bar chart).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 06:47:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237388#M88445</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2011-03-03T06:47:13Z</dc:date>
    </item>
    <item>
      <title>Query regarding bar graph</title>
      <link>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237389#M88446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have one more requirement for hide and show the value on bars.&lt;/P&gt;&lt;P&gt;Is it possible to hide and show value on bars on button clik(In Single Bar chart)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 06:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237389#M88446</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2011-03-03T06:52:45Z</dc:date>
    </item>
    <item>
      <title>Query regarding bar graph</title>
      <link>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237390#M88447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As per my understanding u want the macro to show and hide the expression(Bar) on button clik.&lt;/P&gt;&lt;P&gt;If it is correct. Then please refer the application attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 07:23:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237390#M88447</guid>
      <dc:creator>maneshkhottcpl</dc:creator>
      <dc:date>2011-03-03T07:23:35Z</dc:date>
    </item>
    <item>
      <title>Query regarding bar graph</title>
      <link>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237391#M88448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found a soln for Stack bar. You can check it out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 07:28:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237391#M88448</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2011-03-03T07:28:16Z</dc:date>
    </item>
    <item>
      <title>Query regarding bar graph</title>
      <link>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237392#M88449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 07:50:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237392#M88449</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2011-03-03T07:50:06Z</dc:date>
    </item>
    <item>
      <title>Query regarding bar graph</title>
      <link>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237393#M88450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you try this macro to change stacked bar chart to group bar chart and vise-versa&lt;/P&gt;&lt;P style="font-style: italic; font-weight: bold"&gt;sub changechartmode&lt;BR /&gt;set chart = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;set p = chart.GetProperties&lt;BR /&gt; if(p.ChartProperties.BarModeStacked = false) then&lt;BR /&gt; p.ChartProperties.BarModeStacked=true&lt;BR /&gt; else&lt;BR /&gt; p.ChartProperties.BarModeStacked = false&lt;BR /&gt; end if&lt;BR /&gt; chart.SetProperties p&lt;BR /&gt;end sub&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yogesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 08:13:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Query-regarding-bar-graph/m-p/237393#M88450</guid>
      <dc:creator />
      <dc:date>2011-03-03T08:13:37Z</dc:date>
    </item>
  </channel>
</rss>

