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)'
});
})
}
}
},
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
Source:stackexchange.com