New to Telerik UI for WPF? Start a free 30-day trial
How to place text in doughnut series center
Updated on Sep 15, 2025
Environment
| Product | RadChartView for WPF |
Description
How to add text in the center of a doughnut series.
Solution
You can define the chart and position a TextBlock with the corresponding label on top of it as shown in Example 1.
Example 1: Adding a TextBlock label
XAML
<Grid>
<telerik:RadPieChart>
<!-- some settings here -->
</telerik:RadPieChart>
<TextBlock Text="Label Text" VerticalAlignment="Center" HorizontalAlignment="Center" />
</Grid>