当数据点太高时,如何在除了x和y之外的Highcharts工具提示中显示值?

时间:2015-02-02 06:42:13

标签: javascript highcharts highstock

我正在尝试使用Highcharts绘制折线图,​​但是大量的点中没有一些字段,因此工具提示无法显示相关数据。我还设置了"turboThreshold": 1000000

数据格式

[{
    "name": "Tasks",
    "data": [{
        "title": "Jog Loaned",
        "start_time": "14 Dec 2014 7:51:31",
        "end_time": "14 Dec 2014 7:55:27",
        "x": 1418523927000,
        "y": 33.89,
        "start_time_epoch": 1418523691000
    }, {
        "title": "Prod - RepliINte SEMI Grace",
        "start_time": "14 Dec 2014 7:55:27",
        "end_time": "14 Dec 2014 8:0:44",
        "x": 1418524244000,
        "y": 31.39,
        "start_time_epoch": 1418523927000
    }],
    "turboThreshold": 1000000
}];

Plunker link to the problem

1 个答案:

答案 0 :(得分:1)

事实上,您已在highstock中启用了数据分组,因此对点进行分组并跳过额外的参数。