In Material(Pink,Teal,BlueGrey) themes, the row heading numbers are truncated.
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.