AAChartCore-Kotlin
AAChartCore-Kotlin copied to clipboard
slicedOffset
can someone please help me to set slicedOffset to 0. I am bad about js so couldnt figure out
https://api.highcharts.com/highcharts/plotOptions.pie.slicedOffset
this is how I am trying to achieve that;
chart?.events(AAChartEvents()
.load("""function() {
const chart = this;
chart.update({
plotOptions: {
pie: {
slicedOffset: 0 // Set slicedOffset to 0
}
}
});
}"""))