<?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: Font Heat Color of some text box in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519753#M106325</link>
    <description>&lt;P&gt;You can maybe put those 15 expressions into a variable, which then gives the output as the largest of those 15 values to be used in the ARGB()&lt;/P&gt;</description>
    <pubDate>Mon, 02 Jun 2025 09:13:14 GMT</pubDate>
    <dc:creator>-SW-</dc:creator>
    <dc:date>2025-06-02T09:13:14Z</dc:date>
    <item>
      <title>Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519715#M106316</link>
      <description>&lt;P&gt;There are certain amount of text box whicj represen count of Equipment in organization.These put in diffrent page location and the backgroun is an image map.&lt;/P&gt;&lt;P&gt;I want to change font color base on&amp;nbsp; their count respect to total.from bigger much darker to smaller lighter.&lt;/P&gt;&lt;P&gt;also how can i change their font size respect their portion?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 06:11:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519715#M106316</guid>
      <dc:creator>HAMID_AKBARI</dc:creator>
      <dc:date>2025-06-02T06:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519743#M106322</link>
      <description>&lt;P&gt;You can colour by expression, using the ARGB() function.&lt;/P&gt;&lt;P&gt;Thats (&lt;SPAN&gt;Addressable, Red, Green, Blue). So you can put the measure in the addressable section, and divide it by the Largest number, and multiply it by 255.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 08:49:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519743#M106322</guid>
      <dc:creator>-SW-</dc:creator>
      <dc:date>2025-06-02T08:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519748#M106324</link>
      <description>&lt;P&gt;The company has 15 area and i created 15 text box that show the equipments installed there.&lt;/P&gt;&lt;P&gt;I have the total and every count but cant figured how to relate every text box data to maximum and spectrum font color with RGB&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 09:01:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519748#M106324</guid>
      <dc:creator>HAMID_AKBARI</dc:creator>
      <dc:date>2025-06-02T09:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519753#M106325</link>
      <description>&lt;P&gt;You can maybe put those 15 expressions into a variable, which then gives the output as the largest of those 15 values to be used in the ARGB()&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 09:13:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519753#M106325</guid>
      <dc:creator>-SW-</dc:creator>
      <dc:date>2025-06-02T09:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519826#M106339</link>
      <description>&lt;P&gt;for better understanding I've sent an example file.&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 16:07:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519826#M106339</guid>
      <dc:creator>HAMID_AKBARI</dc:creator>
      <dc:date>2025-06-02T16:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519849#M106340</link>
      <description>&lt;P&gt;it would be something like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ARGB(&lt;BR /&gt;(&lt;BR /&gt;count({&amp;lt;Loc={'area 1'} &amp;gt;} [Equipment Code])&lt;BR /&gt;/&lt;BR /&gt;Max(aggr(count([Equipment Code]),Loc))&lt;BR /&gt;)&lt;BR /&gt;*256,&lt;BR /&gt;RED(),&lt;BR /&gt;Green(),&lt;BR /&gt;Blue()&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 18:46:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519849#M106340</guid>
      <dc:creator>-SW-</dc:creator>
      <dc:date>2025-06-02T18:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519888#M106342</link>
      <description>&lt;P&gt;Excellent.Best solution.Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jun 2025 08:28:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519888#M106342</guid>
      <dc:creator>HAMID_AKBARI</dc:creator>
      <dc:date>2025-06-03T08:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519901#M106344</link>
      <description>&lt;P&gt;I searched about the&amp;nbsp; dynamicfont size and i know its not formulable by the way is it possible to do the same for font size?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jun 2025 08:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519901#M106344</guid>
      <dc:creator>HAMID_AKBARI</dc:creator>
      <dc:date>2025-06-03T08:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Font Heat Color of some text box</title>
      <link>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519904#M106346</link>
      <description>&lt;P&gt;Unfortunately, its only a dropdown select in Qlikview&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jun 2025 08:56:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Font-Heat-Color-of-some-text-box/m-p/2519904#M106346</guid>
      <dc:creator>-SW-</dc:creator>
      <dc:date>2025-06-03T08:56:55Z</dc:date>
    </item>
  </channel>
</rss>

