[Solved] Font Size and Grid Pager Widget

1 Answer 31 Views
GridView
Neil N
Top achievements
Rank 2
Iron
Iron
Veteran
Neil N asked on 18 Aug 2026, 08:42 PM

Seems to be a variation of this issue: https://www.telerik.com/forums/changing-font-size-radnavigationview-menu-items

At default font size 16

Note horizontal cutoff.

1 Answer, 1 is accepted

Sort by
0
Dinko | Tech Support Engineer
Telerik team
answered on 20 Aug 2026, 08:59 AM

Hi Neil,

Thank you for contacting us and for the provided information.

I have tested the scenario, and the current page number is indeed cut off when the FontSize is set via the palette. Therefore, I have logged this in our Feedback Portal on your behalf. You can follow the feedback item to receive status change notifications. 

In the meantime, you can use custom code to handle this. We can subscribe to the Loaded event of the control. In the event handler, you can get the ScrollViewer around the number and modify its padding property, which is messing up the text.

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);
    }
}

I hope that this approach will work for you. In addition, I have updated your Telerik Points for bringing this to our attention.

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

Tags
GridView
Asked by
Neil N
Top achievements
Rank 2
Iron
Iron
Veteran
Answers by
Dinko | Tech Support Engineer
Telerik team
Share this question
or