I need to display 3 values on the tooltip: the time, the value and another value(change).
I saw this example (but the jsdfiddle is not working).
I tried thi
If you want to pass additional data for a point other than the x and y values, then you have to name that value. In the following example I add the following three additional values to each data point:
{
y: 3,
locked: 1,
unlocked: 1,
potential: 1,
}
Then to access and display those values in the tooltip I use the following:
tooltip:
{
formatter: function() { return ' ' +
'Locked: ' + this.point.locked + '
' +
'Unlocked: ' + this.point.unlocked + '
' +
'Potential: ' + this.point.potential;
}
}