<?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: Color Object in Properties panel in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2012645#M17702</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/127133"&gt;@Manoj_Prabu&lt;/a&gt; for your first question, if you are using default colors (no custom colors set), you have to use Theme API for understading which color will have you first/second/third/etc. dimension.&lt;BR /&gt;About all native properties, unfortunatley this is not documented&lt;/P&gt;</description>
    <pubDate>Mon, 05 Dec 2022 11:14:06 GMT</pubDate>
    <dc:creator>alex_colombo</dc:creator>
    <dc:date>2022-12-05T11:14:06Z</dc:date>
    <item>
      <title>Color Object in Properties panel</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2011635#M17685</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;
&lt;P&gt;Please share the way to include the color object to the properties panel in the custom extension. I'm trying to use the master dimension's color value in auto color mode. but couldn't find the proper way to integrate in the properties panel (like using qAttrExp).&lt;/P&gt;
&lt;P&gt;Referred links:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/August2022/Subsystems/Mashups/Content/Sense_Mashups/Create/Visualizations/coloring.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/sense-developer/August2022/Subsystems/Mashups/Content/Sense_Mashups/Create/Visualizations/coloring.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Integration-Extension-APIs/Use-master-items-COLORS-in-QSense-Extension/td-p/1556421" target="_blank" rel="noopener"&gt;Solved: Use master items COLORS in QSense Extension - Qlik Community - 1556421&lt;/A&gt; - also please let me know how to get the colorMapRef value.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 17:27:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2011635#M17685</guid>
      <dc:creator>Manoj_Prabu</dc:creator>
      <dc:date>2022-12-01T17:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Color Object in Properties panel</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2012158#M17694</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/127133"&gt;@Manoj_Prabu&lt;/a&gt; , below an example of extension definition for enabling colors and legend. Then you can use it reading the layout object&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;definition: {
	type: "items",
	component: "accordion",
	items: {
		dimensions: {
			uses: "dimensions",
			min: 1,
			max: 1
		},
		measures: {
			uses: "measures",
			min: 1,
			max: 1
		},
		sorting: {
			uses: "sorting"
		},
		settings: {
			uses: "settings",
			items: {
				colorsAndLegend: {
				uses: "colorsAndLegend",
				items: {
					legend: {
						items: {
							show: {
								snapshot: {
									tid: "property-legend"
								}
							}
						}
					}
				}
			}
			}
		}
	}
}&lt;/LI-CODE&gt;&lt;P&gt;Then you can use it reading the layout object&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-12-02 15_39_17-_ Test - Sample Data App - Il mio nuovo foglio (1) _ Sheet - Qlik Sense.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/95299iFC5E12C489DE3A94/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2022-12-02 15_39_17-_ Test - Sample Data App - Il mio nuovo foglio (1) _ Sheet - Qlik Sense.png" alt="2022-12-02 15_39_17-_ Test - Sample Data App - Il mio nuovo foglio (1) _ Sheet - Qlik Sense.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;About how to get the colorMapRef value, what is your doubt? The link you posted it should help you on this topic&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 14:40:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2012158#M17694</guid>
      <dc:creator>alex_colombo</dc:creator>
      <dc:date>2022-12-02T14:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Color Object in Properties panel</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2012567#M17701</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/145804"&gt;@alex_colombo&lt;/a&gt; , &lt;BR /&gt;Thank you for the response. Your solution literally saved most of my hours/days. This is what exactly that I expected. &lt;BR /&gt;About ColorMapRef, how to generate that ref id is my question. Once I added your solution, I got the ColorMapRef in the path - layout.qHyperCube.qDimensionInfo[0].qAttrDimInfo. but when I tried to get the layout as they said in the link, I didn't get the colors for the respective field. I'm expecting like - in the dimension "Year" for the field value "2022" it will return the master color value. Can you clarify my doubt regarding how to get those colors.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Apart from this question, I want to know how to use all the properties that used in Qlik sense default properties - like data as column instead of dimension &amp;amp; measure separately in the properties panel,  like the one that you used above(colorsAndLegend). where to get the documentions for that?&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Manoj Prabu&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 09:33:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2012567#M17701</guid>
      <dc:creator>Manoj_Prabu</dc:creator>
      <dc:date>2022-12-05T09:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Color Object in Properties panel</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2012645#M17702</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/127133"&gt;@Manoj_Prabu&lt;/a&gt; for your first question, if you are using default colors (no custom colors set), you have to use Theme API for understading which color will have you first/second/third/etc. dimension.&lt;BR /&gt;About all native properties, unfortunatley this is not documented&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 11:14:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Color-Object-in-Properties-panel/m-p/2012645#M17702</guid>
      <dc:creator>alex_colombo</dc:creator>
      <dc:date>2022-12-05T11:14:06Z</dc:date>
    </item>
  </channel>
</rss>

