Completed
Last Updated: 20 May 2026 11:23 by ADMIN
Release 14.0.0 (2026 Q2)
Jax
Created on: 04 Aug 2022 12:17
Category: SegmentedControl
Type: Feature Request
12
SegmentedControl: Implement a Font Size property.
I want to enlarge the font size in the option, but there is no fontsize attribute in this control.
1 comment
ADMIN
Didi
Posted on: 20 May 2026 11:23

Hi all,

In the Telerik UI for .NET MAUI 14.0.0 release, the RadSegmentedControl was rebuilt from the ground up. The control keeps its name and core purpose—display a list of horizontally aligned, mutually exclusive options—but exposes a new API surface, extended styling options, and additional features such as full data binding, selection modes, item templates, size modes, and per-segment commands.

Migration article: https://www.telerik.com/maui-ui/documentation/controls/segmentedcontrol/migration 

FontSize can be applied trough the ItemViewStyle property of the segmented control. The target type is RadSegmentedControlItemView:

<Style x:Key="SegmentItemView" TargetType="telerik:RadSegmentedControlItemView">
    <Setter Property="FontSize" Value="16" />
</Style>

<telerik:RadSegmentedControl x:Name="segmentControl"
                             ItemViewStyle="{StaticResource SegmentItemView}" />

Regards,
Didi
Progress Telerik