How to hide values on pie chart widget?

1
I have challenge with the Pie Chart widget. I want to hide the value labels that appear on the chart, but the widget's default settings don't offer an option to do this directly. I understand that there might be done with "custom layout" but i don't how to implement this successfully. Here's what I'm trying to achieve: I have a Pie Chart widget in my app that displays various data points. By default, this chart shows value labels for each slice of the pie. My goal is to hide these value labels without affecting the rest of the chart's functionality.
asked
2 answers
0

Add the following

{

"textinfo": "none"

}


to advanced and then Custom series options

answered
0

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 !!

answered