Unplanned
Last Updated: 12 Aug 2025 08:40 by ADMIN
Fabian
Created on: 12 Aug 2025 07:52
Category: Spreadsheet
Type: Bug Report
0
RadSpreadsheet: VerticalScrollBar is not fully visible in TelerikMetroTouch theme

When the RadSpreadsheet is docked and the TelerikMetroTouch theme is applied, the Vertical ScrollBar is not fully visible.

1 comment
ADMIN
Dinko | Tech Support Engineer
Posted on: 12 Aug 2025 08:40

Hello Fabian,

Thank you for reporting this behavior. As a workaround, we can remove the margin applied to the VerticalScrollBar top and bottom buttons in the OnLoad method of the Form. This way we can ensure that the control is fully loaded.

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);
    this.radSpreadsheet1.SpreadsheetElement.VerticalScrollBar.FirstButton.ArrowPrimitive.Margin = new Padding(1);
    this.radSpreadsheet1.SpreadsheetElement.VerticalScrollBar.SecondButton.ArrowPrimitive.Margin = new Padding(1);
}

Regards,
Dinko | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.