我正在使用highcahrts dataGrouping,在我们的例子中,我们有完全相同日期的点,但由于某些原因,highcharts没有对它们进行分组,它只对具有时间差异的点进行分组。 这是我们的配置:
dataGrouping : {
enabled : true
approximation : 'average',
groupPixelWidth : 115, // how close the points can be before grouping happens
smoothed : false, // if true, grouped points will stick to the edge of the xAxis which
// looks weird
units : [
[
'second', [
0, 1, 2, 5, 10, 15, 30
]
], [
'minute', [
0, 1, 2, 5, 10, 15, 30
]
], [
'hour', [
0, 1, 2, 3, 4, 6, 8, 12
]
], [
'day', [
1, 2, 3, 4, 5, 6
]
], [
'week', [
1
]
]
],
dateTimeLabelFormats : getDateFormats(),
}
}