Hello,
I create a chart with 3 series, and on the axis Y there is time.
To create this chart I follow this example.
But if I want to use the folliwing option I can see the value only of one serie and not of all the three series when I put the mouse on the chart:
toolTip:{
shared: true,
}
The following function elaborate only one and not all the three series:
contentFormatter: function (e) {
return CanvasJS.formatDate(e.entries[0].dataPoint.y,"hh:mm:ss TT"); //Formatting dateTime in ToolTip
}
Can someone help me?
Thank you very much