<?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: Chart Background Shading in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2430380#M96527</link>
    <description>&lt;P&gt;Hi Fabian,&lt;/P&gt;
&lt;P&gt;which type of chart is that? Combo chart? because I don't have the same options as you when defining the style &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Also, all the bars are vertical and even though I'm putting them on secundary axis, they still keep being vertical. What am I missing? Because I'd desperately need to achieve the same result you show here!&lt;/P&gt;
&lt;P&gt;P.S.: si quiere tambien podemos hablar en espanol si para ti es mas comodo &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Mar 2024 13:58:23 GMT</pubDate>
    <dc:creator>chmarino</dc:creator>
    <dc:date>2024-03-13T13:58:23Z</dc:date>
    <item>
      <title>Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022321#M84386</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to create a line chart, with background colors that correspond to certain ranges. So, for example, the background area over 80% would be shaded green, between 50-80 would be yellow, and below 50 would be red. Is this possible in Qlik Sense?&lt;/P&gt;
&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 15:48:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022321#M84386</guid>
      <dc:creator>cfountain72</dc:creator>
      <dc:date>2023-01-05T15:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022442#M84393</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I recently worked on a similar problem and found that there is no built in way to do this (unless I missed it). I did find a simple way to approximate this using a combo chart.&lt;/P&gt;
&lt;P&gt;In the picture below, I set the dimension as "group" and add 3 measures:&lt;/P&gt;
&lt;P&gt;1. the average of "value1" as a line on the primary axis&lt;/P&gt;
&lt;P&gt;2. the average of "value2" as a line on the primary axis&lt;/P&gt;
&lt;P&gt;3. a dummy measure that is always equal to 1 as a bar chart on the secondary axis&lt;/P&gt;
&lt;P&gt;I then hid the axis and legend for the secondary y-axis and added code to color the bars according to their "group" value (see below).&lt;/P&gt;
&lt;P&gt;=if(group = 'a', argb(50, 255,0,0), &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if(group = 'b', argb(50, 0,255,0), &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if(group = 'c', argb(50,0,0,255), &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if(group = 'd', argb(50, 0,255,255), &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// else&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;argb(50,120,120,120)))))&lt;/P&gt;
&lt;P&gt;I used the argb() function to get the colors to look more transparent and then defined a color for each group. This could be done more effectively for more group values by having them pre-mapped to color values in the load script.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="KGalloway_1-1672956002836.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97388i7864ADA1CB26EFD7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="KGalloway_1-1672956002836.png" alt="KGalloway_1-1672956002836.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 22:03:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022442#M84393</guid>
      <dc:creator>KGalloway</dc:creator>
      <dc:date>2023-01-05T22:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022627#M84404</link>
      <description>&lt;P&gt;Thanks for your reply; I appreciate it. But I am looking to view the bars/segments on the Y-axis, where different line values fall within certain ranges.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 13:16:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022627#M84404</guid>
      <dc:creator>cfountain72</dc:creator>
      <dc:date>2023-01-06T13:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022673#M84412</link>
      <description>&lt;P&gt;Ah okay. I don't know a way to do that currently. Good luck!&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 14:19:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022673#M84412</guid>
      <dc:creator>KGalloway</dc:creator>
      <dc:date>2023-01-06T14:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022696#M84416</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47202"&gt;@cfountain72&lt;/a&gt;&amp;nbsp;, you can try something like this :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_0-1673016898355.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97452i41BEB9CE0B1A7363/image-size/large?v=v2&amp;amp;px=999" role="button" title="QFabian_0-1673016898355.png" alt="QFabian_0-1673016898355.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Just need to create reference lines :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_1-1673017126056.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97453i6AD46ABA799596DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="QFabian_1-1673017126056.png" alt="QFabian_1-1673017126056.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_2-1673017153916.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97454i516E12B4BFE0E922/image-size/large?v=v2&amp;amp;px=999" role="button" title="QFabian_2-1673017153916.png" alt="QFabian_2-1673017153916.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 14:59:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022696#M84416</guid>
      <dc:creator>QFabian</dc:creator>
      <dc:date>2023-01-06T14:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022698#M84417</link>
      <description>&lt;P&gt;Thanks. I have already applied the reference lines, but I need to be able to shade the areas between the lines. In your example, anything below the red line would be red/pink. Above red would be yellow, and so on.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 15:03:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022698#M84417</guid>
      <dc:creator>cfountain72</dc:creator>
      <dc:date>2023-01-06T15:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022723#M84419</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47202"&gt;@cfountain72&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_0-1673019319091.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97456iC31B27F143B16E1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="QFabian_0-1673019319091.png" alt="QFabian_0-1673019319091.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_1-1673019424926.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97457i7CE2A3B88286E39B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_1-1673019424926.png" alt="QFabian_1-1673019424926.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_2-1673019443916.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97458i1B2DC3BB466CD219/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_2-1673019443916.png" alt="QFabian_2-1673019443916.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_3-1673019463283.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97459i80C94777F1B01C02/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_3-1673019463283.png" alt="QFabian_3-1673019463283.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_4-1673019480173.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97460i0E9AB2D1728953AF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_4-1673019480173.png" alt="QFabian_4-1673019480173.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_5-1673019502329.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97461i0E4BF94840600093/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_5-1673019502329.png" alt="QFabian_5-1673019502329.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_6-1673019535284.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97462iDBBF143E95A00796/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_6-1673019535284.png" alt="QFabian_6-1673019535284.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_7-1673019567198.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97465i9CA426C9D254B8E8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_7-1673019567198.png" alt="QFabian_7-1673019567198.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_8-1673019589794.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97466iCB4BDFCEE3C275A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_8-1673019589794.png" alt="QFabian_8-1673019589794.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_9-1673019620832.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97467iC874FECD5C74D00A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_9-1673019620832.png" alt="QFabian_9-1673019620832.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QFabian_10-1673019641131.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97468i08BDC4DD1E7FB8A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QFabian_10-1673019641131.png" alt="QFabian_10-1673019641131.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 15:41:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022723#M84419</guid>
      <dc:creator>QFabian</dc:creator>
      <dc:date>2023-01-06T15:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022726#M84420</link>
      <description>&lt;P&gt;Thanks! That's exactly what I was looking for. (Now I need to translate it to Ingles.)&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 15:48:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022726#M84420</guid>
      <dc:creator>cfountain72</dc:creator>
      <dc:date>2023-01-06T15:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022739#M84421</link>
      <description>&lt;P&gt;Excelent!&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47202"&gt;@cfountain72&lt;/a&gt;&amp;nbsp;, good weekend&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2023 16:33:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2022739#M84421</guid>
      <dc:creator>QFabian</dc:creator>
      <dc:date>2023-01-06T16:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Background Shading</title>
      <link>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2430380#M96527</link>
      <description>&lt;P&gt;Hi Fabian,&lt;/P&gt;
&lt;P&gt;which type of chart is that? Combo chart? because I don't have the same options as you when defining the style &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Also, all the bars are vertical and even though I'm putting them on secundary axis, they still keep being vertical. What am I missing? Because I'd desperately need to achieve the same result you show here!&lt;/P&gt;
&lt;P&gt;P.S.: si quiere tambien podemos hablar en espanol si para ti es mas comodo &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 13:58:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chart-Background-Shading/m-p/2430380#M96527</guid>
      <dc:creator>chmarino</dc:creator>
      <dc:date>2024-03-13T13:58:23Z</dc:date>
    </item>
  </channel>
</rss>

