Hi,
if you have a look at this fiddle: https://jsfiddle.net/dizzy0ny/3ukcexvh/184/
you will see i have 3 series drawn, on two 'panes'. When you hover over the chart, the tool tip is anchored to the upper left.
I would like to make a few modifications to this behavior:
1. When my mouse is not over a chart point, i would like that tooltip/label to still be visible, but show the last values in the series.
2. Id prefer if series 2 anchored to the top left of the pane it is located in.
3. and lastly, is it possible to add a line to the tooltip. for example i would like to add a 'chg' value which is the different between the current bar's close and the previous bars close value. this would only be needed for ohlc/candlestick type series. (i could calculate this in js or pass that data as an additional array element)
any guidance or examples for how to accomplish this would be appreciated.