<?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 Fast Change State in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263294#M99042</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;Does anyone know of a way of finding out which option of a fast change chart is currently in use. I want to be able to be able to identify this in the actual chart expression, so that it can be manipulated depending on type of chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jan 2012 16:12:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-01-10T16:12:58Z</dc:date>
    <item>
      <title>Fast Change State</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263294#M99042</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;Does anyone know of a way of finding out which option of a fast change chart is currently in use. I want to be able to be able to identify this in the actual chart expression, so that it can be manipulated depending on type of chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 16:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263294#M99042</guid>
      <dc:creator />
      <dc:date>2012-01-10T16:12:58Z</dc:date>
    </item>
    <item>
      <title>Fast Change State</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263295#M99043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not entirely sure of a 100% solution for that but something that may be a useful starting point is to control the Fast Change / Chart Types manually, the following code covers both areas:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;set chart = ActiveDocument.Sheets("Main").CreateBarChart&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;chart.AddDimension "ProductType"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;chart.AddExpression "sum(Amount)"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;set p = chart.GetProperties&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;p.GraphLayout.FastChange.Bar = true&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;p.GraphLayout.FastChange.Line = true&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;p.GraphLayout.FastChange.Combo = true&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;p.GraphLayout.FastChange.Pie = true&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;p.GraphLayout.FastChange.Scatter = false&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;p.GraphLayout.FastChange.Straight = false&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;p.GraphLayout.FastChange.Pivot = false&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;p.ChartProperties.FastChangeInChart = true&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;chart.SetProperties p&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;chart.SetChartType&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'line&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Hopefully that will be of some use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matt - Visual Analytics Ltd&lt;/P&gt;&lt;P&gt;@QlikviewBI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 17:00:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263295#M99043</guid>
      <dc:creator>matt_crowther</dc:creator>
      <dc:date>2012-01-10T17:00:56Z</dc:date>
    </item>
    <item>
      <title>Fast Change State</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263296#M99044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Matt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I don't know of an event that would be able to be used to fire off a macro call to check the ChartType. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interestingly the SetChartType property is not defined in the API guide, but is referred to in one of the examples, so not sure if there is an actual GetChartType property anyway?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 17:29:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263296#M99044</guid>
      <dc:creator />
      <dc:date>2012-01-10T17:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change State</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263297#M99045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the GetObjectType method of the chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chart.GetObjectType&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2014 13:29:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change-State/m-p/263297#M99045</guid>
      <dc:creator />
      <dc:date>2014-05-19T13:29:33Z</dc:date>
    </item>
  </channel>
</rss>

