[Vuejs]-Marker (transform: translate(-50, -50)) does not focus on data

0👍

the translation solution

   chart: {
    events: {
        load() {
            const chart = this,
                series = chart.series[0];
                
            series.points.forEach(point => {
                const graphic = point.graphic;
                
                graphic.attr({
                    transform: 'translate(0, 0)'
                });
            })
        }
    }
},
👤Laito

1👍

This is a bug that I reported here:
https://github.com/highcharts/highcharts/issues/18790

As a temporary workaround, you can use the last, correctly working version of Highcharts – 10.2.1

0👍

found a workaround while they fix the bug

in the forum highcharts: https://www.highcharts.com/forum/viewtopic.php?f=9&t=50634&p=185227#p185227

👤Laito

Leave a comment