<?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: Create a diagonal reference line in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300808#M840045</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Arnaud!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be done by two ways:&lt;/P&gt;&lt;P&gt;1. Remove Stacked style of bars and create a simple line with expression "month(SnapShotCalendar.MonthYear)*2083";&lt;/P&gt;&lt;P&gt;2. Create a twin of this chart, but with diagonal and make it transparent, then place the twin on top or bottom of the main chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 2nd way may looks slyly, but sometimes it's only way.&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 May 2017 16:34:26 GMT</pubDate>
    <dc:creator>Sergey_Shuklin</dc:creator>
    <dc:date>2017-05-09T16:34:26Z</dc:date>
    <item>
      <title>Create a diagonal reference line</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300803#M840040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having some troubles to define the expression to create a fix diagonal reference line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Year-to-date bar chart showing the distribution of revenues per month over a year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the chart i have already define a horizontal reference line to define my yearly target revenues (25.000€).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The chart will always shows the 12 months of the year and i would like to create a diagonal reference line going from (0;0) to (Decemeber;25.000€).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea about the expression to define to get this diagonal reference line? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300803#M840040</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create a diagonal reference line</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300804#M840041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may solve it with an island table with Month and required output.&lt;/P&gt;&lt;P&gt;Else you may add an expression like&lt;/P&gt;&lt;P&gt;=PICK(MONTH(MyDate), 1/12*25000, 2/12*25000, 3/12*25000, .....)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2017 08:24:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300804#M840041</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2017-05-08T08:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create a diagonal reference line</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300805#M840042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me what is an island table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding you expression, can you explay me the expression a bit? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2017 08:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300805#M840042</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-08T08:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create a diagonal reference line</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300806#M840043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Island-table might be a table within your datamodel, which is not linked to your data. Or might be linked via the date-field (depending your requirements). Syntax&lt;/P&gt;&lt;P&gt;Diagonal: LOAD * INLINE [MyDate, Value&lt;/P&gt;&lt;P&gt;1/1/2017, 2083&lt;/P&gt;&lt;P&gt;1/2/2017, 4167&lt;/P&gt;&lt;P&gt;etc&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MONTH should deliver a numeric value for for Date, i.e. 1 for January, 2 for February etc. PICK takes the n-th value of this expression, i.e. in case of March it would take 3/12*25000).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2017 08:39:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300806#M840043</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2017-05-08T08:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create a diagonal reference line</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300807#M840044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried but it didnt seem to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find in attachment the chart that i try to modify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only thing that i want to do here, is to create a reference line going from the point (0;0) of my chart and that goes up to 25.000 (other reference line) in december. The reference line needs to be a straight line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 15:20:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300807#M840044</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-09T15:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create a diagonal reference line</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300808#M840045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Arnaud!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be done by two ways:&lt;/P&gt;&lt;P&gt;1. Remove Stacked style of bars and create a simple line with expression "month(SnapShotCalendar.MonthYear)*2083";&lt;/P&gt;&lt;P&gt;2. Create a twin of this chart, but with diagonal and make it transparent, then place the twin on top or bottom of the main chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 2nd way may looks slyly, but sometimes it's only way.&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 16:34:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-diagonal-reference-line/m-p/1300808#M840045</guid>
      <dc:creator>Sergey_Shuklin</dc:creator>
      <dc:date>2017-05-09T16:34:26Z</dc:date>
    </item>
  </channel>
</rss>

