How can i show Tooltip without mouse hover by default.
my Data looks Like:
dataPoints: [
{ x: new Date(2017,6,24), y: 302 },
{ x: new Date(2017,6,25), y: 3100 },
{ x: new Date(2017,6,26), y: 750 },
{ x: new Date(2017,6,26), y: 750 },
{ x: new Date(2017,6,26), y: 750 },
{ x: new Date(2017,6,26), y: 750 },
{ x: new Date(2017,6,26), y: 750 },
{ x: new Date(2017,6,26), y: 750 },
{ x: new Date(2017,6,26), y: 750 },
{ x: new Date(2017,6,27), y: 260 },
{ x: new Date(2017,6,28), y: 3000 },
{ x: new Date(2017,6,29), y: 300 },
{ x: new Date(2017,6,30), y: 290 },
]
},
{
type: "spline",
markerSize: 1,
showInLegend: true,
dataPoints: [
{ x: new Date(2017,6,24), y: 391 },
{ x: new Date(2017,6,25), y: 370 },
{ x: new Date(2017,6,26), y: 200 },
{ x: new Date(2017,6,27), y: 2500 },
{ x: new Date(2017,6,28), y: 610 },
{ x: new Date(2017,6,29), y: 500 },
{ x: new Date(2017,6,30), y: 600 }
]
}
]
I want to show toolTip on specific date (current date in my case, i always have current date in my graph).