<?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 How to set Chart Property in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144968#M23773</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Josh,&lt;/P&gt;&lt;P&gt;Macros that set attributes of an object are always best avoided as they cause instability in the document.&lt;/P&gt;&lt;P&gt;Always better to have multiple charts that are activated/hidden as appropriate.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 May 2009 17:58:46 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-05-26T17:58:46Z</dc:date>
    <item>
      <title>How to set Chart Property</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144967#M23772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a chart area and I have two different drill downs which I am controlling through buttons by toggleing and assinging dimensions programatically using VB Script.&lt;/P&gt;&lt;P&gt;My question is that how to set Property of Chart-&amp;gt;Presentation-&amp;gt;Max Visible Number and Show X-Axis Scrollbar using VB Script.&lt;/P&gt;&lt;P&gt;Sample code would be a great help. Ive tried finding in API Guide but cudnt find.&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 12:38:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144967#M23772</guid>
      <dc:creator />
      <dc:date>2009-05-26T12:38:39Z</dc:date>
    </item>
    <item>
      <title>How to set Chart Property</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144968#M23773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Josh,&lt;/P&gt;&lt;P&gt;Macros that set attributes of an object are always best avoided as they cause instability in the document.&lt;/P&gt;&lt;P&gt;Always better to have multiple charts that are activated/hidden as appropriate.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 17:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144968#M23773</guid>
      <dc:creator />
      <dc:date>2009-05-26T17:58:46Z</dc:date>
    </item>
    <item>
      <title>How to set Chart Property</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144969#M23774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your reply Gordon and agreed to some extent but what is the use of Scripting and direct access to objects and their properties in this product then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 18:25:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144969#M23774</guid>
      <dc:creator />
      <dc:date>2009-05-26T18:25:20Z</dc:date>
    </item>
    <item>
      <title>How to set Chart Property</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144970#M23775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the server environment, that is a question I have asked myself to be honest! I have just posted a question about OnPostReload which confuses me some more...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 18:38:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144970#M23775</guid>
      <dc:creator />
      <dc:date>2009-05-26T18:38:42Z</dc:date>
    </item>
    <item>
      <title>How to set Chart Property</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144971#M23776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not a solution, but I believe, an pointer in the right direction. Some objects have methods called get and setProperties. They are not well documented, I believe, but they hold assorted properties like the two you are looking for. Maybe those you want are there too.&lt;/P&gt;&lt;P&gt;ActiveDocument.getsheetobject("mainReport").addDimension("=if($(ReportFilter2),Category,null())")&lt;BR /&gt; filterSet = true&lt;BR /&gt; set Graph = ActiveDocument.GetSheetObject("mainReport")&lt;BR /&gt; set cp = Graph.GetProperties&lt;BR /&gt; set dims = cp.Dimensions&lt;BR /&gt; dims(dims.Count-1).Title.v = "Category"&lt;BR /&gt; dims(dims.Count-1).NullSuppression = true&lt;BR /&gt; dims(dims.Count-1).ColWidth = 400&lt;BR /&gt; dims(dims.Count-1).SortCriteria.SortByAscii = 1&lt;BR /&gt; dims(dims.Count-1).SortCriteria.SortByLoadOrder = 0&lt;BR /&gt; Graph.SetProperties cp&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 21:27:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-Chart-Property/m-p/144971#M23776</guid>
      <dc:creator />
      <dc:date>2009-05-26T21:27:49Z</dc:date>
    </item>
  </channel>
</rss>

