Unplanned
Last Updated: 05 Aug 2026 14:04 by ADMIN
now when navigating to the control using the tab key, the first segment gets focused, so I want first the entire control to get focused, then each segment. So provide an option to focus the entire control first using the tab key
Unplanned
Last Updated: 31 Jul 2026 07:20 by Craig
Created by: Craig
Comments: 0
Category: SegmentedControl
Type: Feature Request
4

provide support for : narrator and voice over
and the screen reader should  announcing:

  • Announcement of the currently focused segment during keyboard navigation.
  • Announcement of selection changes.



Completed
Last Updated: 20 May 2026 11:27 by ADMIN
Release 14.0.0 (2026 Q2)
Created by: Aaron
Comments: 1
Category: SegmentedControl
Type: Feature Request
1
Provide a way to set rounded corners on the outer buttons and to the complete segment control
Completed
Last Updated: 20 May 2026 11:27 by ADMIN
Release 14.0.0 (2026 Q2)
Currently, there is no ItemTemplate for the SegmentedControl, therefore we need to use an IEnumerable<string>.

Please add support for ItemTemplate, or DisplayMemeberBinding property, so that we can bind to an IEnumerable<T>.
Completed
Last Updated: 20 May 2026 11:24 by ADMIN
Release 14.0.0 (2026 Q2)
Currently users can navigate through segments with Tab key on Windows - provide a way to go forward/backward through arrow keys as well.
Completed
Last Updated: 20 May 2026 11:23 by ADMIN
Release 14.0.0 (2026 Q2)
Created by: Jax
Comments: 1
Category: SegmentedControl
Type: Feature Request
12
I want to enlarge the font size in the option, but there is no fontsize attribute in this control.
Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0
Setting SelectedSegmentBackgroundColor property of the SegmentedControl does not take any effect.
Completed
Last Updated: 22 Jun 2022 10:47 by ADMIN
Release 2.0.0
Created by: ward
Comments: 0
Category: SegmentedControl
Type: Bug Report
3

When setting IsEnabled to False, there is no change in the component.

Test

Use the following code, observe that the RadSegmentedControl is still enabled at runtime.

<telerikInput:RadSegmentedControl x:Name="segmentControlText"
                                  BackgroundColor="AliceBlue"
                                  IsEnabled="False"
                                  VerticalOptions="Start">
    <telerikInput:RadSegmentedControl.ItemsSource>
        <x:Array Type="{x:Type x:String}">
            <x:String>Popular</x:String>
            <x:String>Library</x:String>
            <x:String>Playlists</x:String>
            <x:String>Friends</x:String>
        </x:Array>
    </telerikInput:RadSegmentedControl.ItemsSource>
</telerikInput:RadSegmentedControl>