我正在制作折线图。我有很多读数1天,我需要显示30天的数据。如何显示每天的平均值而不是显示每个数据点?
答案 0 :(得分:2)
如果您使用的是datetime
xAxis,则可以使用Highstock
并使用dataGrouping
属性:
plotOptions: {
line: {
enabled: true,
forced: true,
dataGrouping: {
approximation: 'average',
units: [
[
'month', [1]]
]
}
}
}
这会自动将您的每日数据分组到月平均值。这是DEMO