Unplanned
Last Updated: 20 Aug 2026 09:01 by ADMIN
Neil N
Created on: 20 Aug 2026 08:52
Category: DataPager
Type: Bug Report
0
DataPager: Setting the font size through the palette is not applied correctly on the current page number
FluentPalette.Palette.FontSize = 16;

1 comment
ADMIN
Dinko | Tech Support Engineer
Posted on: 20 Aug 2026 09:01

Hello Neil,

Thank you for reporting this behavior. As a workaround, you can customize the Padding property of the ScrollViewer around the number. To get the ScrollViewer, we can use the ChildrenOfType<T>() method inside the Loaded event of the MainWindow:

private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    var scrollViewer= this.radDataPager.ChildrenOfType<ScrollViewer>().FirstOrDefault(x=>x.Name == "PART_ContentHost");
    if (scrollViewer!= null)
    {
        scrollViewer.Padding = new Thickness(10,0,0,0);
    }
}

Regards,
Dinko | Tech Support Engineer
Progress Telerik

Unlock smarter data exploration in RadGridView with AI-powered features. Enable natural language queries and help users uncover insights faster.

Learn more about RadGridView AI features