user801116
user801116

Reputation:

How to show values in Highcharts tooltip other than x and y when data points are too high?

I am trying to plot a line chart using Highcharts but high number of points do not have some fields in it and so the tooltip is unable to show relevant data. I have also set "turboThreshold": 1000000

Data format

[{
    "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

Upvotes: 1

Views: 696

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37578

It is realted with fact that you have enabled dataGrouping in highstock, so points are grouped and extra parameters are skipped.

Upvotes: 1

Related Questions