<?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: Data Points On Layered Map in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-change-the-color-in-Data-Points-On-Layered-Map-in-Qlik/m-p/1880892#M72587</link>
    <description>&lt;P&gt;You are wonderful, worked perfectly.&lt;/P&gt;
&lt;P&gt;Thank you very much for your help.&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jan 2022 19:13:33 GMT</pubDate>
    <dc:creator>Zara</dc:creator>
    <dc:date>2022-01-13T19:13:33Z</dc:date>
    <item>
      <title>How to change the color in Data Points On Layered Map in Qlik Sense Geo Analytics</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-change-the-color-in-Data-Points-On-Layered-Map-in-Qlik/m-p/1880219#M72546</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;We have a Qlik report utilising the map feature. Essentially all of our customers are plotted on the map using a dimension as the layer. When we zoom in, the names/labels are lost somewhat as they are the same colour as the locations.&lt;BR /&gt;&lt;BR /&gt;Is there a way to change the text colour? Picture as below.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Zara_0-1642000786163.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/70082i7764322ABD2E607F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Zara_0-1642000786163.png" alt="Zara_0-1642000786163.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Sep 2022 08:41:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-change-the-color-in-Data-Points-On-Layered-Map-in-Qlik/m-p/1880219#M72546</guid>
      <dc:creator>Zara</dc:creator>
      <dc:date>2022-09-17T08:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data Points On Layered Map</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-change-the-color-in-Data-Points-On-Layered-Map-in-Qlik/m-p/1880548#M72568</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Changing the color and&amp;nbsp;size of the value labels is not possible from the options within the &lt;SPAN&gt;&lt;STRONG&gt;Map &lt;/STRONG&gt;&lt;/SPAN&gt;chart. If you would like to have this as an option within the &lt;SPAN&gt;&lt;STRONG&gt;Map &lt;/STRONG&gt;&lt;/SPAN&gt;chart, you can submit a&lt;STRONG&gt; feature request &lt;/STRONG&gt;[&lt;A title="How To Submit Feature Requests For Qlik Products" href="https://community.qlik.com/t5/Knowledge-Base/How-To-Submit-Feature-Requests-For-Qlik-Products/ta-p/1712581" target="_blank" rel="noopener"&gt;How To Submit Feature Requests For Qlik Products&lt;/A&gt;].&lt;/P&gt;
&lt;P&gt;However, you can achieve this use case scenario, by creating a &lt;STRONG&gt;custom theme&lt;/STRONG&gt; following the instructions below:&lt;/P&gt;
&lt;P&gt;1. For how to create custom themes in &lt;SPAN&gt;&lt;STRONG&gt;Qlik Sense&lt;/STRONG&gt;&lt;/SPAN&gt;, you can refer to the official documentation&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp;Custom themes&lt;/STRONG&gt;&lt;/SPAN&gt; [&lt;A title="Custom themes" href="https://help.qlik.com/en-US/sense-developer/August2022/Subsystems/Extensions/Content/Sense_Extensions/custom-themes-introduction.htm" target="_blank" rel="noopener"&gt;Custom themes&lt;/A&gt;]&lt;/P&gt;
&lt;P&gt;2. As soon as you have your simple custom theme you can add the following properties in the&lt;SPAN&gt;&lt;STRONG&gt; theme.json&lt;/STRONG&gt;&lt;/SPAN&gt; file:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;object {
    [...]
    "mapChart": {
      "label": {
        "value": {"fontSize": "35px", "color":"blue"}
      }
    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. If you have followed the custom theme creation guidelines, then (including the addition&amp;nbsp;above) you should have something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{
  "_inherit": true,
  "_variables" : {
    "@greenColor" : "#61a729",
    "@text": "#4c4c4c"
  },
  "color": "@text",
  "fontSize": "12px",
  "object" : {
    "title": {
      "main": {
        "fontSize" : "16px"
      }
    },
    "mapChart": {
      "label": {
        "value": {"fontSize": "35px", "color":"blue"}
      }
    }
  },
  "dataColors": {
    "primaryColor": "@greenColor"
  }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. After that, if you have set your app's theme, to the custom one, you should get the following output:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://lithium-response-prod.s3.us-west-2.amazonaws.com/qlik.response.lithium.com/RESPONSEIMAGE/6e5d79e2-a1f5-4415-8fe6-e1dd883ca3e1.default.PNG" border="0" alt="SCREENSHOT" /&gt;&lt;/P&gt;
&lt;P&gt;As you can see, the value labels are much bigger and the color is different. So it is much easier to distinguish those data points&amp;nbsp;on the map. You can modify the properties of the &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;JSON&lt;/FONT&gt; &lt;/STRONG&gt;file as it suits your needs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;NOTE: &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#008000"&gt;Please keep in mind, that you might not see any changes on your chart sometimes. This can happen due to cache and you should test this solution with an Incognito window at first, to ensure that the cache is not causing this issue.&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;I hope that this information was helpful. In case I have misunderstood the use case scenario, please elaborate in detail by providing additional information. However, if it has helped you resolve the issue, please mark it as an accepted solution to give further visibility to other community members.&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Sep 2022 08:39:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-change-the-color-in-Data-Points-On-Layered-Map-in-Qlik/m-p/1880548#M72568</guid>
      <dc:creator>Andrei_Cusnir</dc:creator>
      <dc:date>2022-09-17T08:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Data Points On Layered Map</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-change-the-color-in-Data-Points-On-Layered-Map-in-Qlik/m-p/1880892#M72587</link>
      <description>&lt;P&gt;You are wonderful, worked perfectly.&lt;/P&gt;
&lt;P&gt;Thank you very much for your help.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 19:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-change-the-color-in-Data-Points-On-Layered-Map-in-Qlik/m-p/1880892#M72587</guid>
      <dc:creator>Zara</dc:creator>
      <dc:date>2022-01-13T19:13:33Z</dc:date>
    </item>
  </channel>
</rss>

