<?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 Customization of label for Fast change in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Customization-of-label-for-Fast-change/m-p/810400#M535295</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;Can we have a customized label for fast change.&lt;/P&gt;&lt;P&gt;I.e. when we set fast change a icon will be displayed on the title bar of a chart and when we hover on it, it shows "fast change".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is can we have a customized label that when we are going for a graph it should show "graph" and when we are going for pivot or straight table it should show "table".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Dec 2014 05:24:42 GMT</pubDate>
    <dc:creator>kkkumar82</dc:creator>
    <dc:date>2014-12-11T05:24:42Z</dc:date>
    <item>
      <title>Customization of label for Fast change</title>
      <link>https://community.qlik.com/t5/QlikView/Customization-of-label-for-Fast-change/m-p/810400#M535295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;Can we have a customized label for fast change.&lt;/P&gt;&lt;P&gt;I.e. when we set fast change a icon will be displayed on the title bar of a chart and when we hover on it, it shows "fast change".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is can we have a customized label that when we are going for a graph it should show "graph" and when we are going for pivot or straight table it should show "table".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 05:24:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customization-of-label-for-Fast-change/m-p/810400#M535295</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2014-12-11T05:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Customization of label for Fast change</title>
      <link>https://community.qlik.com/t5/QlikView/Customization-of-label-for-Fast-change/m-p/810401#M535296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there is no such direct function in Qlikview to get the type of chart currently displaying.&amp;nbsp; Check this thread hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/640923#640923" title="http://community.qlik.com/message/640923#640923"&gt;http://community.qlik.com/message/640923#640923&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 05:42:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customization-of-label-for-Fast-change/m-p/810401#M535296</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-12-11T05:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Customization of label for Fast change</title>
      <link>https://community.qlik.com/t5/QlikView/Customization-of-label-for-Fast-change/m-p/810402#M535297</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;We can get the chart type by using below macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Macro to get fast change chart type in a variable&lt;/P&gt;&lt;P&gt;10 - Pivot Table&lt;/P&gt;&lt;P&gt;11 - Straight Table&lt;/P&gt;&lt;P&gt;12 - Bar&lt;/P&gt;&lt;P&gt;15 - Line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_1418278333579656 jive_macro_code" jivemacro_uid="_1418278333579656"&gt;
&lt;P&gt;Sub GetChartType()&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set chart = ActiveDocument.getsheetobject("CH01")&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set p = chart.GetProperties&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set v = ActiveDocument.GetVariable("vFastChangeChartType")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; v.SetContent chart.GetObjectType,true&amp;nbsp; &lt;/P&gt;
&lt;P&gt;end sub&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but we cannot trigger this macro when fast change is applied.&amp;nbsp; So, better create separate charts and then show and hide based on the button clicks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 06:13:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Customization-of-label-for-Fast-change/m-p/810402#M535297</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-12-11T06:13:16Z</dc:date>
    </item>
  </channel>
</rss>

