Description:
tooltip gets Hidden immediately as soon as tooltip displayed using dispatchAction() method, when we pass x and y co-ordinates instead of seriesIndex and dataIndex shown as follows.
myChart.dispatchAction({
type: 'showTip',
x: params.event.offsetX,
y: params.event.offsetY,
position: [params.event.offsetX + 20, params.event.offsetY + 20]
});
Description:
tooltip gets Hidden immediately as soon as tooltip displayed using dispatchAction() method, when we pass x and y co-ordinates instead of seriesIndex and dataIndex shown as follows.