Hello,
thanks for the updated codepen.
Unfortunately that's not what I want to achieve.
I would like to see in this example the accumulated values (summed up) of every month.
This means, f.e.
SeriesData
March 2016 has value 6.3 + 10.3 = 16.6
April 2016 has value 13.3
and so on
SeriesData1
March 2016 has value -5.3
April 2016 has value 1 + 10 = 11
and so on
Any way to achieve this without doing the calculation on the arrays?
Thanks!
Martin