<?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 x-axis scroll bar to keep right by default in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350638#M577699</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure what version you are using but on 11 under the presentation tab of the chart properties there is a "Reversed" check box in the chart scrolling section that should do as you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works on screen but not on reports as of yet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2012 15:15:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-05-09T15:15:21Z</dc:date>
    <item>
      <title>x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350636#M577697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - I have built a combo chart and&amp;nbsp; set the max visible as 12 and enabled X-Axis scroll bar if it goes above 12 months. My sort order is date dimension with ascending order. All works well, but I am unable to keep the x-axis scroll bar to be always right by default. For ex, currenly if I close and open up the qvw file then you can see the scroll bar going back to left and use can scroll through to the right. But I need it by default to be at the right side as shown in the screen shot. Is there anyway we can do this? If so, any idea pl?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2012 15:45:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350636#M577697</guid>
      <dc:creator />
      <dc:date>2012-03-13T15:45:44Z</dc:date>
    </item>
    <item>
      <title>x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350637#M577698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="combochart.bmp" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/12106_combochart.bmp" width="450" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2012 15:51:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350637#M577698</guid>
      <dc:creator />
      <dc:date>2012-03-13T15:51:04Z</dc:date>
    </item>
    <item>
      <title>x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350638#M577699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure what version you are using but on 11 under the presentation tab of the chart properties there is a "Reversed" check box in the chart scrolling section that should do as you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works on screen but not on reports as of yet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 15:15:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350638#M577699</guid>
      <dc:creator />
      <dc:date>2012-05-09T15:15:21Z</dc:date>
    </item>
    <item>
      <title>x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350639#M577700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This code will look at all objects on all sheets, and if the object ID is in strSearch, it will set the scroll bar to the right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ChartXScrollInitRight&lt;/P&gt;&lt;P&gt;stop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s=ActiveDocument.NoOfSheets&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i = 0 to s-1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set s=ActiveDocument.Sheets(i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objs=s.GetSheetObjects&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for j=lbound(objs) to ubound(objs)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strCHID = objs(j).GetObjectID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strSearch = "CH61,CH59,CH57,CH62,CH65,CH66,CH67,CH68,CH69"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; intFound =&amp;nbsp; instr(strSearch,mid(strCHID,10,4))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if intFound &amp;gt; 0 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set rep = ActiveDocument.GetSheetObject(strCHID)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set p = rep.GetProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; p.ChartProperties.XScrollInitRight = True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rep.SetProperties p&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;/P&gt;&lt;P&gt;'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Do nothing'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 17:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350639#M577700</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2012-05-09T17:15:01Z</dc:date>
    </item>
    <item>
      <title>x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350640#M577701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks both for your reply, we are now in QV 10, but soon we will be moving into 11 so will use the property as suggested instead of having macro. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 14:55:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350640#M577701</guid>
      <dc:creator />
      <dc:date>2012-05-16T14:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350641#M577702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It did not work for me in Q11&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 08:20:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350641#M577702</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2013-07-23T08:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350642#M577703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am working in QV 10,Just&amp;nbsp; x-axis scroll bar put in right and save it..hope it will work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards-bika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 08:52:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350642#M577703</guid>
      <dc:creator />
      <dc:date>2013-07-23T08:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350643#M577704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone found a solution for this?&amp;nbsp; I am working in QV 11.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 15:26:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350643#M577704</guid>
      <dc:creator />
      <dc:date>2013-09-13T15:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350644#M577705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;In QV 11, under the Presentation tab if you enable the X-Axis Scroll bar and also check the "Reversed" box it should work for you.&amp;nbsp; My sort is based on date so setting Reversed has the charts default to the latest date or x-axis scroll bar to the far right&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Sep 2013 15:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350644#M577705</guid>
      <dc:creator />
      <dc:date>2013-09-24T15:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350645#M577706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about Straight table and Pivot table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2014 09:37:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350645#M577706</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2014-06-20T09:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350646#M577707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why doesn't work in chart type pivot table , have a solution ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank's&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 07:37:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350646#M577707</guid>
      <dc:creator>mfikrirahmat</dc:creator>
      <dc:date>2016-04-20T07:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350647#M577708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the presentation tab, "Reversed" option should solve your problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 08:50:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350647#M577708</guid>
      <dc:creator />
      <dc:date>2016-04-25T08:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: x-axis scroll bar to keep right by default</title>
      <link>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350648#M577709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm in 12.1 and checking "Reversed" changes the sort of the values, it doesn't move the scrollbar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2018 16:30:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/x-axis-scroll-bar-to-keep-right-by-default/m-p/350648#M577709</guid>
      <dc:creator>Margaret</dc:creator>
      <dc:date>2018-01-18T16:30:54Z</dc:date>
    </item>
  </channel>
</rss>

