Tooltip doesn't update after hovering above / below points (over plot area) [5.0.8+] #6456
Comments
Hi Torsten, It was me that filed this bug originally with stpoa. I have a workaround (using 5.0.7) and wondered when you might expect to provide an official patch for 5.0.8 please? |
Hi @onmas59 Workaround Highcharts.wrap(Highcharts.Pointer.prototype, 'getHoverData', function (proceed, a, b, c, isDirectTouch, shared, f) {
var directTouch = shared ? false : directTouch;
return proceed.apply(this, [a, b, c, directTouch, shared, f]);
}); |
Thanks for the update and workaround. This fixes it for the axis used by the candle data series, but I have other axes (e.g. showing Volume, technical indicators etc.), which fail to show on the tooltip. The workaround I'm using (going back to using 5.0.7) works fine for the moment. I'll keep an eye out for the next release in a few weeks. Thanks again. |
Internal note: @oysteinmoseng @jon-a-nygaard
|
…ect for Candlestick and OHLC series.
@KacperMadej See comment in #6633 |
Expected behaviour
After hovering over point on series and then hovering above or below different point, tooltip should update its position. (Works as expected in 5.0.7)
Actual behaviour
After hovering over point on series and then hovering above or below different point, tooltip doesn't update its position.
Live demo with steps to reproduce
http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/stock/demo/intraday-candlestick/
The text was updated successfully, but these errors were encountered: