0
votes

What i would like: (not in highcharts) enter image description here

Note the gray backround graph showing the average trend

What i currently have: (made with highcharts) enter image description here I managed to implement the stacked area chart, but i would like to add the grey average graph in the background.

Could anyone tell me if and how this is possible?

Thanks!

1
Have a look at this: jsfiddle.net/gaellm/pw4fwdjm - Rakesh G R
You can add new average series in your callback function: jsfiddle.net/5cmjh486 - Grzegorz Blachliński

1 Answers

0
votes

The answer was simply adding the "stack" variable to my series, which allows you to build multiple stacks of "stacked area" charts: one for the actual values, one for the average of last week. Thanks to everyone for their input