user460114
user460114

Reputation: 1848

HighCharts - Don't show line or change line style if date not reached

We are using highcharts to display daily sales comparisons with past months.

enter image description here

The red line indicates the current week. Today is Wednesday and notice that the red line dives down to zero (I have highlighted that section in yellow), simply because Thursday has not arrived and so there are no sales yet. However, this has the appearance of a downward trend.

Is there a way to change the line to a different style for days that haven't arrived yet, e.g. a light grey dotted line, or even no line at all?

Upvotes: 0

Views: 2133

Answers (1)

Ricardo Lohmann
Ricardo Lohmann

Reputation: 26320

The chart only will display it's data, if you want to remove it you can pass null as it's value.
This way your chart range goes from Monday to Sunday, but the line will stop on Saturday.

demo

Upvotes: 2

Related Questions