<?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 Color bar chart by expression in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Color-bar-chart-by-expression/m-p/1104532#M18733</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to replicate a bar chart in Qlik Sense that we previously made in Qlikview. The thing is that many of the options available in Qlikview do not exist in Sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, this is the original chart:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Captura_1.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/126486_Captura_1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this is what I'm getting in Sense:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Captura_2.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/126487_Captura_2.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I know the numbers aren't quite the same, this is because of new data that has been loaded in Sense but not in Qlikview).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'd like to know is a way to make the inferior bars in each case gray, like we did in qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In qlikview we used one dimension (X), and two expressions: (Y, with colors) and (Z, without colors). To obtain thiswe added an IF statement in the background color of that expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone knows some way to accomplish this we'd be very grateful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Jun 2016 09:40:19 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-06-01T09:40:19Z</dc:date>
    <item>
      <title>Color bar chart by expression</title>
      <link>https://community.qlik.com/t5/App-Development/Color-bar-chart-by-expression/m-p/1104532#M18733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to replicate a bar chart in Qlik Sense that we previously made in Qlikview. The thing is that many of the options available in Qlikview do not exist in Sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, this is the original chart:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Captura_1.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/126486_Captura_1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this is what I'm getting in Sense:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Captura_2.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/126487_Captura_2.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I know the numbers aren't quite the same, this is because of new data that has been loaded in Sense but not in Qlikview).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'd like to know is a way to make the inferior bars in each case gray, like we did in qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In qlikview we used one dimension (X), and two expressions: (Y, with colors) and (Z, without colors). To obtain thiswe added an IF statement in the background color of that expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone knows some way to accomplish this we'd be very grateful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 09:40:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Color-bar-chart-by-expression/m-p/1104532#M18733</guid>
      <dc:creator />
      <dc:date>2016-06-01T09:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Color bar chart by expression</title>
      <link>https://community.qlik.com/t5/App-Development/Color-bar-chart-by-expression/m-p/1104533#M18734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the below expression for my below chart may be this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(ValueList ('Actual', 'Plan', 'Prev Year')= 'Actual',rgb(60,2,95),&lt;/P&gt;&lt;P&gt;if(ValueList ('Actual', 'Plan', 'Prev Year')= 'Plan',rgb(150,150,150),rgb(102,0,133)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use your dimensions and the conditions similar to above in the colours and legends and choose&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;colours custom and choose by expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/126503_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 10:38:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Color-bar-chart-by-expression/m-p/1104533#M18734</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-01T10:38:58Z</dc:date>
    </item>
  </channel>
</rss>

