<?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 Set scrollbar right in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145737#M24390</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, didn't realise the effects only occur on start up.&lt;/P&gt;&lt;P&gt;I was expecting the test button to cause it to jump.&lt;/P&gt;&lt;P&gt;My mistake&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Jun 2009 21:35:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-06-08T21:35:33Z</dc:date>
    <item>
      <title>Set scrollbar right</title>
      <link>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145732#M24385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a graph which I have ordered in ascending date order.&lt;/P&gt;&lt;P&gt;I have a scrollbar, but I want the graph to, by default, start with the scroll bar in the right most position (the latest date).&lt;/P&gt;&lt;P&gt;Presently it starts off in it's default position on the left.&lt;/P&gt;&lt;P&gt;I've tried the following macro:&lt;/P&gt;&lt;P&gt;sub OneOff&lt;BR /&gt; for counterVar = 71 to 72&lt;BR /&gt; myvar = "CH"&amp;amp;counterVar&lt;BR /&gt; set chart = ActiveDocument.GetSheetObject(myvar)&lt;BR /&gt; set p = chart.GetProperties&lt;BR /&gt; p.ChartProperties.XScrollInitRight = true&lt;BR /&gt; chart.SetProperties p&lt;BR /&gt; next&lt;BR /&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get charts CH71 and CH72 to scroll right, but it doesn't work.&lt;/P&gt;&lt;P&gt;Can somebody help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 16:09:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145732#M24385</guid>
      <dc:creator />
      <dc:date>2009-06-03T16:09:57Z</dc:date>
    </item>
    <item>
      <title>Set scrollbar right</title>
      <link>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145733#M24386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You dont have to write a macro for this.&lt;/P&gt;&lt;P&gt;Go to the properties of the chart, Click presentation.&lt;/P&gt;&lt;P&gt;You can see 'Reversed' icon. Enable that and it will work as you expected.&lt;/P&gt;&lt;P&gt;--Santhosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 16:55:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145733#M24386</guid>
      <dc:creator />
      <dc:date>2009-06-03T16:55:42Z</dc:date>
    </item>
    <item>
      <title>Set scrollbar right</title>
      <link>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145734#M24387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I noticed,&lt;/P&gt;&lt;P&gt;Nontheless I want to use the macro method since, for various reasons, the reversed button has no effect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 17:20:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145734#M24387</guid>
      <dc:creator />
      <dc:date>2009-06-03T17:20:49Z</dc:date>
    </item>
    <item>
      <title>Set scrollbar right</title>
      <link>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145735#M24388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have modified your macro and it works for me.&lt;/P&gt;&lt;P&gt;sub OneOff&lt;BR /&gt; set chart = ActiveDocument.GetSheetObject("CH71")&lt;BR /&gt; set chart1 = ActiveDocument.GetSheetObject("CH72")&lt;BR /&gt; set p = chart.GetProperties&lt;BR /&gt; set q = chart1.GetProperties&lt;BR /&gt; p.ChartProperties.XScrollInitRight = true&lt;BR /&gt; q.ChartProperties.XScrollInitRight = true&lt;BR /&gt; chart.SetProperties p&lt;BR /&gt; chart1.SetProperties q&lt;BR /&gt;end sub&lt;/P&gt;&lt;P&gt;I agree that the above code doesn't use a for loop.&lt;/P&gt;&lt;P&gt;--Santhosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 18:55:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145735#M24388</guid>
      <dc:creator />
      <dc:date>2009-06-03T18:55:03Z</dc:date>
    </item>
    <item>
      <title>Set scrollbar right</title>
      <link>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145736#M24389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, that's half the problem, it doesn't use a for loop and there are about 20 of these charts.&lt;/P&gt;&lt;P&gt;But appart from that, even static as that is, it doesn't work. I test the function and nothing happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2009 17:24:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145736#M24389</guid>
      <dc:creator />
      <dc:date>2009-06-04T17:24:28Z</dc:date>
    </item>
    <item>
      <title>Set scrollbar right</title>
      <link>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145737#M24390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, didn't realise the effects only occur on start up.&lt;/P&gt;&lt;P&gt;I was expecting the test button to cause it to jump.&lt;/P&gt;&lt;P&gt;My mistake&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2009 21:35:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-scrollbar-right/m-p/145737#M24390</guid>
      <dc:creator />
      <dc:date>2009-06-08T21:35:33Z</dc:date>
    </item>
  </channel>
</rss>

