Reputation: 492
I tried to work with something like merging a set of data from days to months, but Highcharts doesn't group them. The chart tries to show all the data. I am not using Highstock.
Is data grouping supported in Highcharts?
Upvotes: 2
Views: 3323
Reputation: 19103
Highcharts itself doesn't suport data grouping. You have two options:
If you want to process your data to group it, you will need to loop through your daily data, adding each value into a new data array, indexed on month.
Upvotes: 1