<?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: 2 colored line in Line Chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725922#M260329</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can probably use colormix1 to accomplish what you need, assuming you have just 2 colors in your gradient (which it seems like you do from your screenshot):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ColorMix1(rand(),blue(),red())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the first parameter to determine how much closer the color should be to the first color vs. the second.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vlad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Sep 2014 16:20:23 GMT</pubDate>
    <dc:creator>vgutkovsky</dc:creator>
    <dc:date>2014-09-18T16:20:23Z</dc:date>
    <item>
      <title>2 colored line in Line Chart</title>
      <link>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725918#M260325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to use the Colors tab and/or Background Color/Line Style attributes to assign multiple colors to a single line as shown in the attached chart?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 20:58:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725918#M260325</guid>
      <dc:creator />
      <dc:date>2014-09-17T20:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: 2 colored line in Line Chart</title>
      <link>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725919#M260326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about like this ? its a regular line chart&amp;nbsp; with 'multicolored' enabled and a line style of '&amp;lt;W8&amp;gt;'&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/67050_Capture.PNG.png" style="width: 620px; height: 299px;" /&gt;\\&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or 3D ?&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture1.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/67051_Capture1.PNG.png" style="width: 620px; height: 286px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2014 00:59:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725919#M260326</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-09-18T00:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: 2 colored line in Line Chart</title>
      <link>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725920#M260327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe that each of those segments is a seperate line. If you look at my example, each line needs to to have two colors and they need to be in a gradient as they move across the line. I could create two lines for every line, but it wouldn't allow for the gradients and would not be ideal as every line in my data would be split in two.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2014 15:55:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725920#M260327</guid>
      <dc:creator />
      <dc:date>2014-09-18T15:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Re: 2 colored line in Line Chart</title>
      <link>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725921#M260328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a continuous line chart (numeric / date dimension) and i've added a colormix1() color gradient with the following formula.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it takes a value between 0 and 1, so the date on the x axis&amp;nbsp; is a ratio of the min-&amp;gt;max range. Left side is yellow() and right side is red().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this helpful ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ColorMix1(&lt;/P&gt;&lt;P&gt;(Date - min( total Date)) &lt;/P&gt;&lt;P&gt;/ &lt;/P&gt;&lt;P&gt;( max( total Date) - min(total Date) )&lt;/P&gt;&lt;P&gt;,yellow(),red())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/67134_Capture.PNG.png" style="width: 620px; height: 298px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2014 16:14:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725921#M260328</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-09-18T16:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: 2 colored line in Line Chart</title>
      <link>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725922#M260329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can probably use colormix1 to accomplish what you need, assuming you have just 2 colors in your gradient (which it seems like you do from your screenshot):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ColorMix1(rand(),blue(),red())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the first parameter to determine how much closer the color should be to the first color vs. the second.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vlad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2014 16:20:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-colored-line-in-Line-Chart/m-p/725922#M260329</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2014-09-18T16:20:23Z</dc:date>
    </item>
  </channel>
</rss>

