<?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 Set background color stacked pie chart with trellis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-background-color-stacked-pie-chart-with-trellis/m-p/716285#M257561</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a pie chart with trellis and 3 dimensions, I don't know why the sequence of colors is different for any dimension (see the legend)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to set the colors in order of dimension values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Planned 0 --&amp;gt; Blue color&lt;/P&gt;&lt;P&gt;Planned 1 --&amp;gt; Red color&lt;/P&gt;&lt;P&gt;Planned 1 --&amp;gt; Green color&lt;/P&gt;&lt;P&gt;Planned 1 --&amp;gt; Yellow color&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actual 0 --&amp;gt; Blue color&lt;/P&gt;&lt;P&gt;Actual 1 --&amp;gt; Red color&lt;/P&gt;&lt;P&gt;Actual 1 --&amp;gt; Green color&lt;/P&gt;&lt;P&gt;Actual 1 --&amp;gt; Yellow color&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My qvw app attached and the expected result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Oct 2014 16:27:29 GMT</pubDate>
    <dc:creator>eddysanchez</dc:creator>
    <dc:date>2014-10-13T16:27:29Z</dc:date>
    <item>
      <title>Set background color stacked pie chart with trellis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-background-color-stacked-pie-chart-with-trellis/m-p/716285#M257561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a pie chart with trellis and 3 dimensions, I don't know why the sequence of colors is different for any dimension (see the legend)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to set the colors in order of dimension values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Planned 0 --&amp;gt; Blue color&lt;/P&gt;&lt;P&gt;Planned 1 --&amp;gt; Red color&lt;/P&gt;&lt;P&gt;Planned 1 --&amp;gt; Green color&lt;/P&gt;&lt;P&gt;Planned 1 --&amp;gt; Yellow color&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actual 0 --&amp;gt; Blue color&lt;/P&gt;&lt;P&gt;Actual 1 --&amp;gt; Red color&lt;/P&gt;&lt;P&gt;Actual 1 --&amp;gt; Green color&lt;/P&gt;&lt;P&gt;Actual 1 --&amp;gt; Yellow color&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My qvw app attached and the expected result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2014 16:27:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-background-color-stacked-pie-chart-with-trellis/m-p/716285#M257561</guid>
      <dc:creator>eddysanchez</dc:creator>
      <dc:date>2014-10-13T16:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Set background color stacked pie chart with trellis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-background-color-stacked-pie-chart-with-trellis/m-p/716286#M257562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved in the script including first the dimension values in order and after that deleting this rows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;Inline [&lt;/P&gt;&lt;P&gt;Target Matrix,Planned,Actual,Value&lt;/P&gt;&lt;P&gt;,0,0&lt;/P&gt;&lt;P&gt;,1,1&lt;/P&gt;&lt;P&gt;,2,2&lt;/P&gt;&lt;P&gt;,3,3&lt;/P&gt;&lt;P&gt;A3,3,0,9&lt;/P&gt;&lt;P&gt;A1,0,1,23&lt;/P&gt;&lt;P&gt;A1,1,1,14&lt;/P&gt;&lt;P&gt;A2,2,1,17&lt;/P&gt;&lt;P&gt;A1,0,2,34&lt;/P&gt;&lt;P&gt;A1,0,3,30&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;Resident Table&lt;/P&gt;&lt;P&gt;Where [Target Matrix] &amp;lt;&amp;gt; '';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RENAME Table Temp to Table;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2014 19:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-background-color-stacked-pie-chart-with-trellis/m-p/716286#M257562</guid>
      <dc:creator>eddysanchez</dc:creator>
      <dc:date>2014-10-13T19:56:01Z</dc:date>
    </item>
  </channel>
</rss>

