1

我有一个 highstock 折线图,显示给定股票的每日和每周股票价格。问题是当数据数组足够大时,每日数据点被“抽样”成每周数据点,每周数据点被抽样成每月数据点。

有没有办法防止这种情况?

任何帮助,将不胜感激。

4

1 回答 1

0

尝试将启用的 dataGrouping 设置为 false

// other settings here
plotOptions : {
    area : { // change this to the chart type you use
        dataGrouping : {
            enabled: false
        }
    }
}
// other settings here
于 2012-03-16T20:03:24.347 回答