Chartjs-Trigger axispointer function on existing chart js via console

1👍

Found out how to do it for the demo website that I mentioned earlier

var ch=echarts.init(document.getElementById('chart-panel')) 

ch.dispatchAction({ 

    type:'showTip', 

    seriesIndex:0, 

    dataIndex:0});

Works somewhat for axispointers.

Leave a comment