I've a Highstock chart (Line with markers and shadow) and would like to show a highstock tooltip programmatically, i.e. when i select, for example, a row on some table (that contains chart data) i would like to show the corresponding highstock tooltip.
Is that possible?
For StockChart this solution doesn't work:
In this example you have to replace this:
to this:
The solution is available here.
If what you want is to trigger tooltip on the plot near
i
th data point, then probaly you can use this answer, which suggest to do something likewhere
chart
is the result of yournew Highcharts.Chart
. (jsfiddle from the comments to that answer).I guess that if you want to do it on
<tr>
click, than your js could finally look like this