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 this
//each loop..
indice.push(["time", "value1", "value2"]);
, the tooltip settings
tooltip:
{
useHTML: true,
formatter: function()
{
return '' + Highcharts.dateFormat('%H:%M:%S', this.x) +'; '+ this.y + this.z(<-is this right?);
}
},
and the series
series:
[{
type: 'area',
data: indice
}]
can somone help pls?
thsnks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…