<?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 Re: To change the default color selection in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315794#M838264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no Straight forward with out Macro. May be this?&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="164350" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/164350_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 May 2017 05:40:45 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2017-05-23T05:40:45Z</dc:date>
    <item>
      <title>To change the default color selection</title>
      <link>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315793#M838263</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;I am having a scenario in which if i select a timeline(for Eg. selected month as Apr), the default Green color is for month dimension and for remaining dimension as light grey color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i would like to change the default color from Green to Blue, and the remaining unselected item as white. Is this possible in qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315793#M838263</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: To change the default color selection</title>
      <link>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315794#M838264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no Straight forward with out Macro. May be this?&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="164350" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/164350_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2017 05:40:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315794#M838264</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-23T05:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: To change the default color selection</title>
      <link>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315795#M838265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be helpfull,&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/494950"&gt;Change selection color&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2017 05:44:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315795#M838265</guid>
      <dc:creator>qlikview979</dc:creator>
      <dc:date>2017-05-23T05:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: To change the default color selection</title>
      <link>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315796#M838266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simple Macro may be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sub MacrotoChangeColor()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dim UserPrefs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set UserPrefs = _&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ActiveDocument.GetApplication.GetUserPreferences&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UserPrefs.CustomSelBgColor(1).PrimaryCol.Col = _&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RGB (0,0,255) ' Blue&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UserPrefs.CustomSelBgColor(5).PrimaryCol.Col = _&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RGB (255,255,255) ' Light gray&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ActiveDocument.GetApplication.SetUserPreferences _&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UserPrefs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end sub&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2017 05:51:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315796#M838266</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-23T05:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: To change the default color selection</title>
      <link>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315797#M838267</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;I have applied the changes and it is working fine at the application level. But, when i have placed the same application into access point it is giving me the default color selection i.e. green &lt;SPAN style="font-size: 10pt;"&gt;not blue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not know the exact issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!!&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2017 06:35:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315797#M838267</guid>
      <dc:creator />
      <dc:date>2017-05-23T06:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: To change the default color selection</title>
      <link>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315798#M838268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it, Can i know which client of Access point you are seeing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2017 07:16:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-change-the-default-color-selection/m-p/1315798#M838268</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-23T07:16:24Z</dc:date>
    </item>
  </channel>
</rss>

