如何在highcharts中显示平均值?

时间:2015-01-19 23:52:19

标签: highcharts

我正在制作折线图。我有很多读数1天,我需要显示30天的数据。如何显示每天的平均值而不是显示每个数据点?

1 个答案:

答案 0 :(得分:2)

如果您使用的是datetime xAxis,则可以使用Highstock并使用dataGrouping属性:

plotOptions: {
        line: {
            enabled: true,
            forced: true,
            dataGrouping: {
                approximation: 'average',
                units: [
                    [
                        'month', [1]]
                ]
            }
        }
    }

这会自动将您的每日数据分组到月平均值。这是DEMO