<?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: Mimic default color spectrum with ColorMix? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1560793#M40847</link>
    <description>&lt;P&gt;I'm sorry, I don't understand what you mean. I am using Qlik Sense not Qlik View, so how would a function from Qlik View help me?&lt;/P&gt;</description>
    <pubDate>Mon, 25 Mar 2019 13:27:31 GMT</pubDate>
    <dc:creator>jonvitale</dc:creator>
    <dc:date>2019-03-25T13:27:31Z</dc:date>
    <item>
      <title>Mimic default color spectrum with ColorMix?</title>
      <link>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1560279#M40818</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I want to see if anyone has a ColorMix2 (or more complex set of if statements) that will replicate the default dark blue - light blue - yellow - red gradient?&lt;/P&gt;&lt;P&gt;My need is to generate colors in a map with an expression, not by measure.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 20:21:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1560279#M40818</guid>
      <dc:creator>jonvitale</dc:creator>
      <dc:date>2021-12-22T20:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Mimic default color spectrum with ColorMix?</title>
      <link>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1560489#M40831</link>
      <description>&lt;P&gt;We have default feature to create ColeMix() in Qlikview where as If you are familiar to write the expression in Qliksense. Well and good. Could you try in View and then copy paste it here.&lt;/P&gt;&lt;P&gt;Make sure, That you are using color set with yours instead default.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 03:40:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1560489#M40831</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2019-03-25T03:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Mimic default color spectrum with ColorMix?</title>
      <link>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1560793#M40847</link>
      <description>&lt;P&gt;I'm sorry, I don't understand what you mean. I am using Qlik Sense not Qlik View, so how would a function from Qlik View help me?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 13:27:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1560793#M40847</guid>
      <dc:creator>jonvitale</dc:creator>
      <dc:date>2019-03-25T13:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Mimic default color spectrum with ColorMix?</title>
      <link>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1618448#M46074</link>
      <description>&lt;DIV&gt;Jon,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I created a parameter for a project that should help you. It takes the min and max of a numeric range (unlike &lt;A href="https://help.qlik.com/en-US/sense/June2019/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/ColorFunctions/color-functions-charts.htm" target="_self"&gt;colormix&lt;/A&gt;) and six hexadecimal codes (also unlike colormix). Also, the use of six color codes returns more variation.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;It's best applied in a table because you have to call &lt;A href="https://help.qlik.com/en-US/sense/June2019/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/InterRecordFunctions/column.htm" target="_self"&gt;column&lt;/A&gt;, but it works on some other charts.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Script:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;// Create variable w/ parameters&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;// 1 = column number (number of measure in object, not including dimensions)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;// 2 = min of numeric range&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;// 3 = max of numeric range&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;// 4-9 = six hexadecimal codes in ascending order (from color associated w/ min to color associated w/ max)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;SET pColormix6_hex = IF(COLUMN($1)&amp;lt;($3-(($3-$2)/2)),IF(COLUMN($1)&amp;lt;$2,'$4',COLORMIX2(((COLUMN($1)-($3-(($3-$2)/2)))/(($3-$2)/4))+1,RGB(NUM(NUM#(UPPER(MID('$4',2,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$4',4,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$4',6,2)),'(HEX)'))),RGB(NUM(NUM#(UPPER(MID('$6',2,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$6',4,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$6',6,2)),'(HEX)'))),RGB(NUM(NUM#(UPPER(MID('$5',2,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$5',4,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$5',6,2)),'(HEX)'))))),IF(COLUMN($1)&amp;gt;$3,'$9',COLORMIX2(((COLUMN($1)-($3-(($3-$2)/2)))/(($3-$2)/4))-1,RGB(NUM(NUM#(UPPER(MID('$7',2,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$7',4,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$7',6,2)),'(HEX)'))),RGB(NUM(NUM#(UPPER(MID('$9',2,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$9',4,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$9',6,2)),'(HEX)'))),RGB(NUM(NUM#(UPPER(MID('$8',2,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$8',4,2)),'(HEX)')),NUM(NUM#(UPPER(MID('$8',6,2)),'(HEX)'))))));&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Chart:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;=$(pColormix6_hex($1,$2,$3,$4,$5,$6,$7,$8,$9))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Chart Example:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;=$(pColormix6_hex(1,3,6,#AE1C3E,#ED875E,#F2D2AE,#D1EBFB,#5EA4D9,#3C52A1))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hope that helps,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Jason&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 29 Aug 2019 17:06:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1618448#M46074</guid>
      <dc:creator>jleach2</dc:creator>
      <dc:date>2019-08-29T17:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Mimic default color spectrum with ColorMix?</title>
      <link>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1618455#M46075</link>
      <description>&lt;P&gt;Wow, genius, thank you for being a loyal Community member and addressing this thread after so much time. It's too bad there aren't more Community members like you.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 17:16:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Mimic-default-color-spectrum-with-ColorMix/m-p/1618455#M46075</guid>
      <dc:creator>jonvitale</dc:creator>
      <dc:date>2019-08-29T17:16:42Z</dc:date>
    </item>
  </channel>
</rss>

