When the RadSpreadsheet is docked and the TelerikMetroTouch theme is applied, the Vertical ScrollBar is not fully visible.
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.