<?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 of BOXPLOT by Expression in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560625#M40844</link>
    <description>&lt;P&gt;Awesome! Thank you so much.&lt;/P&gt;</description>
    <pubDate>Mon, 25 Mar 2019 09:40:01 GMT</pubDate>
    <dc:creator>joshuahirsch</dc:creator>
    <dc:date>2019-03-25T09:40:01Z</dc:date>
    <item>
      <title>Color of BOXPLOT by Expression</title>
      <link>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1559654#M40759</link>
      <description>&lt;P&gt;Hey Guys,&lt;/P&gt;&lt;P&gt;I just saw it's possible to change the color of Boxplots in QlikSense! I think it's new, cause I swear I searched it once and couldn't find it.&lt;/P&gt;&lt;P&gt;Anyway.&lt;BR /&gt;Now I want&amp;nbsp; my Boxplot to have a nice color by expression.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bplot.PNG" style="width: 961px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/8574i18A5060B9589AF6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="bplot.PNG" alt="bplot.PNG" /&gt;&lt;/span&gt;I already tried it, but i can't manage to do it somehow...&lt;/P&gt;&lt;P&gt;So I have minutes as x and depth as y axis.&lt;/P&gt;&lt;P&gt;And as you can see, I want the color between 5 and 6 to be green, everything else red.&lt;/P&gt;&lt;P&gt;My expression: If(depth.avg &amp;gt; 5 AND depth.avg &amp;lt; 6, Green(), RGB(255,0,0)).&lt;/P&gt;&lt;P&gt;But as you can see, it's not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would really appreciate some help! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:16:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1559654#M40759</guid>
      <dc:creator>joshuahirsch</dc:creator>
      <dc:date>2024-11-16T06:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Color of BOXPLOT by Expression</title>
      <link>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560076#M40801</link>
      <description>&lt;P&gt;Hi Joshua,&lt;/P&gt;
&lt;P&gt;The color expression in box plot was added in November 2017 release.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What it does is to color the entire box with a color based on your expression. So if I understand your case it won't color the area between 5 and 6 of the box. If that is what you want?&lt;/P&gt;
&lt;P&gt;On the other hand if you want to color the box based on the entire box being inside the area from 5 to 6 then you would have to modify your expression to see if max(depth.avg) is less than 6 and min(depth) more than 5 then it should work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="boxplot color.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/8639i05E009DE31980180/image-size/large?v=v2&amp;amp;px=999" role="button" title="boxplot color.PNG" alt="boxplot color.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Patrik.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 12:50:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560076#M40801</guid>
      <dc:creator>Patrik_Lundblad</dc:creator>
      <dc:date>2019-03-22T12:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Color of BOXPLOT by Expression</title>
      <link>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560568#M40838</link>
      <description>&lt;P&gt;Hi Plu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;P&gt;Is it somehow possible, to get the&amp;nbsp;Quartile-Values instead of min max?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 08:18:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560568#M40838</guid>
      <dc:creator>joshuahirsch</dc:creator>
      <dc:date>2019-03-25T08:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Color of BOXPLOT by Expression</title>
      <link>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560618#M40843</link>
      <description>&lt;P&gt;Hi Joshua,&lt;/P&gt;
&lt;P&gt;Sure, just replace the max/min aggregation with the aggregation for the quartiles. To see how we calculate the quartiles you can go into "box plot elements" in the property panel and turn off presets and then expand the "box start" and "box end".&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="quartiles.PNG" style="width: 251px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/8734i1BB7355608458C2C/image-size/large?v=v2&amp;amp;px=999" role="button" title="quartiles.PNG" alt="quartiles.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is a new version of the app with a new color expression based on using Tukey for quartile calculations.&lt;/P&gt;
&lt;P&gt;Patrik.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 09:26:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560618#M40843</guid>
      <dc:creator>Patrik_Lundblad</dc:creator>
      <dc:date>2019-03-25T09:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Color of BOXPLOT by Expression</title>
      <link>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560625#M40844</link>
      <description>&lt;P&gt;Awesome! Thank you so much.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 09:40:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Color-of-BOXPLOT-by-Expression/m-p/1560625#M40844</guid>
      <dc:creator>joshuahirsch</dc:creator>
      <dc:date>2019-03-25T09:40:01Z</dc:date>
    </item>
  </channel>
</rss>

