How can I hide the default segment value label drawn automatically?
I need the solution for both iOS and Android version.
- Sandeep Dhull asked 5 years ago
- You must login to post comments
Hi Sandeep,
In Android you can disable drawing of labels by setting DrawLabels to false on DonutRenderableSeries instance:
donutSeries.setDrawLabels(false);
EDIT:
For iOS part is works same way:
pieSeries.drawLabels = false
Hope this will help you!
Best regards,
Yura
- Yura Khariton answered 5 years ago
- last edited 5 years ago
- You must login to post comments
Please login first to submit.