Is there a way to remove pie slices in the perspective pie chart?

I noticed that there is a percent limit value in the props for the pie chart, but is there a way to make it so instead of the labels going on the outside if they dont meet the limit, they are just hidden? because otherwise it crams all of the labels at 0 at the top of my pie chart and it makes the title unreadable.

You can set the Pie Chart's props.labels.showName = false and props.labels.showValue = false to hide the labels if some value is less than the limit. I don't think you can hide individual labels, it's an all or none deal.

Also, you mention it crams labels over the title, try props.labels.align = true
Examples:

2 Likes