<?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 Visualisation API and Extensions in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615014#M11151</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have been messing around with the visualisation API to dynamically build visualisations on the fly (simple gauges, charts etc), however would like to be able to use some in-house extensions (an xMR chart and custom KPI with popup) in the same way.&lt;/P&gt;&lt;P&gt;From what I've read I only seemed to find the registerExtension method which seems a bit ott as the extensions already exist on the server.&lt;/P&gt;&lt;P&gt;the qlik-visual component seemed to have a type of extension but there was no example documentation so was wondering if anyone else had done something similar or knew of any resources that referenced it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dale&lt;/P&gt;</description>
    <pubDate>Wed, 21 Aug 2019 18:22:49 GMT</pubDate>
    <dc:creator>dwqlik82</dc:creator>
    <dc:date>2019-08-21T18:22:49Z</dc:date>
    <item>
      <title>Visualisation API and Extensions</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615014#M11151</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have been messing around with the visualisation API to dynamically build visualisations on the fly (simple gauges, charts etc), however would like to be able to use some in-house extensions (an xMR chart and custom KPI with popup) in the same way.&lt;/P&gt;&lt;P&gt;From what I've read I only seemed to find the registerExtension method which seems a bit ott as the extensions already exist on the server.&lt;/P&gt;&lt;P&gt;the qlik-visual component seemed to have a type of extension but there was no example documentation so was wondering if anyone else had done something similar or knew of any resources that referenced it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dale&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 18:22:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615014#M11151</guid>
      <dc:creator>dwqlik82</dc:creator>
      <dc:date>2019-08-21T18:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Visualisation API and Extensions</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615154#M11154</link>
      <description>&lt;P&gt;Hi Dale,&lt;/P&gt;&lt;P&gt;Most extensions work very well with the visualization API. A problem might be that the property structure is not well documented, but if you can set up your objects the way you want with Qlik Sense, you can use the developer menu, or a separate tool like my Chrome extension &lt;A title="Link to Chrome Web store" href="https://chrome.google.com/webstore/detail/add-sense/bbiljflfafkaejgdebbnmcohpidgkejj" target="_blank" rel="noopener"&gt;Add Sense&amp;nbsp;&lt;/A&gt;to grab the property structure.&lt;/P&gt;&lt;P&gt;The registerExtension API call is for another use case: when you want to use an extension in your mashup without having to install it on the server.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 06:56:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615154#M11154</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2019-08-22T06:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Visualisation API and Extensions</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615157#M11155</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/37466"&gt;@dwqlik82&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;If your visualization extension already exists in the server, you don't need to register it with `registerExtension`.&lt;/P&gt;
&lt;P&gt;using visualization api you can :&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;app.visualization.create(
  'YOU_EXTENSION_ID',
  ["Case Owner Group","=Avg([Case Duration Time])"],
  {title:"My extension on the fly"}).then(vis =&amp;gt; {
    vis.show("elementId");
});&lt;/LI-CODE&gt;
&lt;P&gt;qlik-visual web-component:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;qlik-visual appid="Helpdesk Management.qvf"
	type="MY_EXTENSION_ID"
	cols='["Case Owner Group","=Avg([Case Duration Time])"]'
	options='{"title" : "My extension on the fly"}' &amp;gt;
&amp;lt;/qlik-visual&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps,&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 07:02:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615157#M11155</guid>
      <dc:creator>Aiham_Azmeh</dc:creator>
      <dc:date>2019-08-22T07:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Visualisation API and Extensions</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615170#M11156</link>
      <description>&lt;P&gt;Thanks both, didn't think to just try the extensionID&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_rolling_eyes:"&gt;🙄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many, many thanks for the quick response!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dale&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 07:32:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Visualisation-API-and-Extensions/m-p/1615170#M11156</guid>
      <dc:creator>dwqlik82</dc:creator>
      <dc:date>2019-08-22T07:32:42Z</dc:date>
    </item>
  </channel>
</rss>

