Customizing Labels in the Pie Chart
Environment
Version | Product | Author |
---|---|---|
6.7.0 | Telerik UI for .NET MAUI Chart | Dobrinka Yordanova |
Description
How can I customize the labels in the Pie Chart, for example, set the text color, font size, an so on?
Solution
To customize the labels in the Pie Chart, use the native Pie Chart for Android, iOS, or WinUI.
1. Add sample model and view model:
2. Define the Pie Chart in XAML:
3. Subscribe to the HandlerChanged
event:
4. And inside the UpdateChart()
method, implement the custom logic for accessing the native Android, iOS, or WinUI Chart and customize the labels of the PieSeries
:
5. For WinUI, add the label template definition inside the Platforms/Windows/App.xaml
file:
6. For Android, create a class CustomPieSeriesLabelRenderer
inside the Platforms/Android
folder. This class is used for native label rendering:
7. For iOS and MacCatalyst, render a new label using a delegate. Create a class MyChartDelegate
inside the Platforms/iOS
and Platforms/MacCatalyst
folders: