<?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>idea From now on, please track this idea from the Ideation por... in Suggest an Idea</title>
    <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/2100383#M13645</link>
    <description>&lt;P&gt;From now on, please track this idea from the Ideation portal.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A title="Link to new idea" href="https://ideation.qlik.com/app/#/case/279009" target="_blank" rel="noopener"&gt;Link to new idea&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Meghann&lt;/P&gt;&lt;P data-unlink="true"&gt;&lt;EM&gt;NOTE: Upon clicking this link 2 tabs may open - please feel free to close the one with a login page. If you &lt;STRONG&gt;only&lt;/STRONG&gt; see 1 tab with the login page, please try clicking this link first: &lt;STRONG&gt;&lt;A title="Authenticate me!" href="#" target="_blank" rel="noopener"&gt;Authenticate me!&lt;/A&gt;&lt;/STRONG&gt;&amp;nbsp;t&lt;/EM&gt;&lt;EM&gt;hen try the link above again. Ensure pop-up blocker is off.&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Aug 2023 15:31:20 GMT</pubDate>
    <dc:creator>Meghann_MacDonald</dc:creator>
    <dc:date>2023-08-02T15:31:20Z</dc:date>
    <item>
      <title>Fix continuous line chart's display of missing values</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idi-p/1729498</link>
      <description>&lt;P&gt;Line charts have 3 options for how to handle missing values:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Show as connections&lt;/LI&gt;&lt;LI&gt;Show as zeros&lt;/LI&gt;&lt;LI&gt;Show as gaps&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;But this feature is limited and unintuitive, leading to periodic forum posts over the years&amp;nbsp;&lt;SPAN&gt;(such as &lt;/SPAN&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-App-Development/line-chart-bug/td-p/1338362" target="_self"&gt;my own&lt;/A&gt;&lt;SPAN&gt;) from bewildered Qlik app creators. In &lt;/SPAN&gt;&lt;A href="https://support.qlik.com/articles/000085388" target="_self"&gt;this article&lt;/A&gt;&lt;SPAN&gt;, Qlik acknowledges this feature's problems to some extent but states that it's "impossible" to fix because there's no way to know which points are missing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Well, I reject that response. Why? Because it's plainly not impossible. A line chart requires exactly one dimension to be provided for the horizontal axis, and that field contains all the missing points. Maybe the algorithm to extract those missing points from that field wouldn't fit nicely into the Qlik engine, but that's very different from &lt;EM&gt;impossible&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;SET DateFormat = 'yyyy-mm-dd';

Fact_Revenue:
LOAD
	[Date],
	Revenue
INLINE [
	Date, Revenue
	2020-01-01, 100
	2020-01-03, 200
];

Dim_Calendar:
LOAD
	[Date]
INLINE [
	Date
	2020-01-01
	2020-01-02
	2020-01-03
];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I create a line chart and choose "Show as gaps."&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="show as gaps.png" style="width: 229px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/37767i015B63BD6D311AB2/image-size/large?v=v2&amp;amp;px=999" role="button" title="show as gaps.png" alt="show as gaps.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;With no dates filtered out, Sum(Revenue) is shown as 0 for 2020-01-02 if no filtering is applied. This is a borderline case. I'm personally ok with it because Sum(no data) = 0 and because I happen to want to see a zero in this case, but I could see the argument that it's wrong since it's ignoring the "Show as gaps" choice.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="unfiltered.png" style="width: 635px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/37768i2C8EB7799953F69B/image-size/large?v=v2&amp;amp;px=999" role="button" title="unfiltered.png" alt="unfiltered.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I filter out 2020-01-02, the corresponding data point vanishes and I am left with a connection across it instead of a gap as I had chosen. This case is clear-cut: it's definitely wrong. And the answer to the question of "Which points are missing?" is obvious from looking at the Date field.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="filtered.png" style="width: 630px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/37769iE1CEF5D61876B5B4/image-size/large?v=v2&amp;amp;px=999" role="button" title="filtered.png" alt="filtered.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Since the missing values dropdown has already been a part of Qlik's app editing interface for many years, effort should be put into getting trivial cases like this to work as users expect.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 08:56:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idi-p/1729498</guid>
      <dc:creator>mmarchese</dc:creator>
      <dc:date>2020-11-25T08:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Fix continuous line chart's display of missing values - Status changed to: Open - Collecting Feedback</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1759919#M4111</link>
      <description>&lt;P&gt;Thank you for your feedback on ways to improve our product. While this is something we understand would be useful, it's not on the short-term roadmap. Please continue to show your support for this idea.&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Patric&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 15:13:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1759919#M4111</guid>
      <dc:creator>Patric_Nordstrom</dc:creator>
      <dc:date>2020-11-09T15:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fix continuous line chart's display of missing values</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1900455#M8847</link>
      <description>&lt;P&gt;We are relatively new to Qlik and struggle with the exact issue on our first project:&lt;/P&gt;
&lt;P&gt;Our continous time axis uses 5 Minute intervalls. We don't manage to remove the lines representing wrong data points. And we can't activate data points or labels to clearify the issue as this would blow up the visualization if we zoom out to the whole day.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HolgerV_0-1646300033672.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/73488i96196FC558839BCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HolgerV_0-1646300033672.png" alt="HolgerV_0-1646300033672.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;P.S. : We have tried "include zero-values", adding a fake line with 0 or null data and playing with the "Show as"-Options available. Still looking for a solution.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 09:37:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1900455#M8847</guid>
      <dc:creator>HolgerV</dc:creator>
      <dc:date>2022-03-03T09:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Fix continuous line chart's display of missing values</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1965245#M10132</link>
      <description>&lt;P&gt;Same issue here - neither unchecking the box "include 0 values" in data handling&amp;nbsp; section or switching between the 3 "missing values" options in Appearance section makes any difference. Also tried different types of x axes, continuous or not, or converted 0 values into null() or text - my final line chart looks same.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wish this gets solved soon, as it is quite major issue visually for effectively understanding the data viz.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giraffes_heart_0-1659708170605.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/86081i0981CBF744B1DADC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="giraffes_heart_0-1659708170605.png" alt="giraffes_heart_0-1659708170605.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 14:03:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1965245#M10132</guid>
      <dc:creator>giraffes_heart</dc:creator>
      <dc:date>2022-08-05T14:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fix continuous line chart's display of missing values</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1983901#M10388</link>
      <description>&lt;P&gt;This is also a large issue that our organization is facing for our visuals. It makes the context of the visual entirely inaccurate.&lt;/P&gt;
&lt;P&gt;Please prioritize this and recognize the concern here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 20:37:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1983901#M10388</guid>
      <dc:creator>Kyle1</dc:creator>
      <dc:date>2022-09-21T20:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Fix continuous line chart's display of missing values</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1996724#M10677</link>
      <description>&lt;P&gt;This has proved problematic in several cases for my team also.&amp;nbsp; Hoping for a solution soon.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 16:20:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/1996724#M10677</guid>
      <dc:creator>Jacob_Poole</dc:creator>
      <dc:date>2022-10-25T16:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Fix continuous line chart's display of missing values</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/2067239#M12765</link>
      <description>&lt;P&gt;This has been a problem in multiple scenarios for our team. Hoping to see a solution come in to play before too long.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 13:29:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/2067239#M12765</guid>
      <dc:creator>QlikSense_Developer</dc:creator>
      <dc:date>2023-05-03T13:29:39Z</dc:date>
    </item>
    <item>
      <title>From now on, please track this idea from the Ideation por...</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/2100383#M13645</link>
      <description>&lt;P&gt;From now on, please track this idea from the Ideation portal.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A title="Link to new idea" href="https://ideation.qlik.com/app/#/case/279009" target="_blank" rel="noopener"&gt;Link to new idea&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Meghann&lt;/P&gt;&lt;P data-unlink="true"&gt;&lt;EM&gt;NOTE: Upon clicking this link 2 tabs may open - please feel free to close the one with a login page. If you &lt;STRONG&gt;only&lt;/STRONG&gt; see 1 tab with the login page, please try clicking this link first: &lt;STRONG&gt;&lt;A title="Authenticate me!" href="#" target="_blank" rel="noopener"&gt;Authenticate me!&lt;/A&gt;&lt;/STRONG&gt;&amp;nbsp;t&lt;/EM&gt;&lt;EM&gt;hen try the link above again. Ensure pop-up blocker is off.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 15:31:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/2100383#M13645</guid>
      <dc:creator>Meghann_MacDonald</dc:creator>
      <dc:date>2023-08-02T15:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Fix continuous line chart's display of missing values - Status changed to: Closed - Archived</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/2100384#M13646</link>
      <description />
      <pubDate>Wed, 02 Aug 2023 15:31:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Fix-continuous-line-chart-s-display-of-missing-values/idc-p/2100384#M13646</guid>
      <dc:creator>Ideation</dc:creator>
      <dc:date>2023-08-02T15:31:22Z</dc:date>
    </item>
  </channel>
</rss>

