Highcharts Dynamic tooltip positioning -
we doing proof of concept highcharts need replicate chart system. other system has charts laid out shown on jsfiddle page. created 4 axis, , positioned each axis x pixels left of prior one. problem tooltip axis 1-3 hover on axis 0. there way figure out axis hovering, or there way layout? tried using positioner function, not anywhere.
positioner: function (boxwidth, boxheight, point) { }
jsfiddle example http://jsfiddle.net/oabg7kjw/
it known bug reported here
workaround (using positioner): http://jsfiddle.net/oabg7kjw/1/
tooltip: { positioner: function(w, h, p) { return { x: p.plotx + this.chart.hoverseries.xaxis.left - w/2, y: p.ploty } } },
docs: - http://api.highcharts.com/highcharts#tooltip.positioner
Comments
Post a Comment