Can't figure out how to hide the pie labels.
I've already tried these settings:
xAxis: {
labels:
{
enabled: false
}
},
yAxis: {
min: 0,
gridLineWidth: 0,
title: {
text: ''
},
labels:
{
enabled: false
}
},
but looks like it doesn't work.
Plot a pie chart using pie() method. To hide the label on the left side in matplotlib, we can use plt. ylabel("") with ablank string.
Just don't create the highchart and insert text saying "No Data Available". Without any code, this is the most help you're likely to get.
You set that in the plotoptions for the pie chart, not the axis :
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false,
}
}
}
FIDDLE
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With