如何在高图中显示平均值?

How to display averages in highcharts?

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

如果您正在使用 datetime xAxis,您可以使用 Highstock 并为此使用 dataGrouping 属性:

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

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