Unplanned
Last Updated: 05 Apr 2023 07:33 by ADMIN
Dennis
Created on: 05 Apr 2023 07:27
Category: Spreadsheet
Type: Bug Report
1
RadSpreadsheet: Row heading numbers are truncated in Material(Pink, Teal, BlueGrey) themes

In Material(Pink,Teal,BlueGrey) themes, the row heading numbers are truncated.

1 comment
ADMIN
Dinko | Tech Support Engineer
Posted on: 05 Apr 2023 07:33

Hi Dennis,

Thank you for reporting this. To work around this, you can reduce the Font size of the row headings.

public partial class RadForm1 : Telerik.WinControls.UI.RadForm
{
    public RadForm1()
    {
        InitializeComponent();
    }
    protected override void OnLoad(EventArgs e)
    {
        base.OnLoad(e);
        Telerik.WinForms.Controls.Spreadsheet.Worksheets.RadWorksheetEditor activeEditor = this.radSpreadsheet1.SpreadsheetElement.ActiveSheetEditor as RadWorksheetEditor;
        foreach (var c in activeEditor.Children)
        {
            Telerik.WinControls.Spreadsheet.UI.Panel p = c as Telerik.WinControls.Spreadsheet.UI.Panel;
            if (p != null)
            {
                p.Font = new Font(p.Font.FontFamily,8.25f);
            }
        }
    }
}

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.