Im working on a highchart. The array for series looks something like this:
graphData = [{name:"Thunder", data:[['11PM',3726],['5PM',2344]]},
{name:"Hurricane", data:[['11PM',5736].['5PM',5244]]}]
For the tooltip, if I hover over lets say 11PM on either line, i want to show data from both Thunder and Hurricane. Right now, it only shows data from the corresponding graph line.
tootlip:{
pointFormat: "{point.series.name}: {point.y:0f}"
}
series: this.graphData
Suggestions? Thanks!