Is there a way to change the default solid border of a pie highchart to dashed? This modification is only necessary for pies without data or with negative data values. Perhaps it's possible to redraw the SVG of the border, like in this example: https://jsfiddle.net/g8vafrt5/13/ https://i.sstatic.net/nH7YY.png
Highcharts.chart('container', {
chart: {
type: 'pie',
},
tooltip: {
enabled: false
},
plotOptions: {
pie: {
dataLabels: {
enabled: false,
},
},
series: {
showInLegend: true,
},
},
series: [{
innerSize: "40%",
data: [{
y: 0,
}]
}]
});