Add the following
{
"textinfo": "none"
}
to advanced and then Custom series options
Hello,
You can try handling this through the custom layout option
Something like this usually works:
{
"labels": {
"enabled": false
}
}
If that doesn’t hide them in your case, you can also try:
{
"series": [
{
"labels": {
"enabled": false
}
}
]
}
This should remove the value labels from the pie without affecting the rest of the chart.
Thanks !!