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.