It worked perfectly for me, thank you very much . I just have one more question: Is it possible to place the first value of the results on the right? Right now, it starts at the top.
Of cource you can do that, you need the property startAngle, like this:
myChart.set('advancedOptions', {
series: [{
label: {
show: true,
fontSize: 14,
color: 'red',
position: 'outside'
},
startAngle: 0, // 0 puts the first value to the right
}],
})