Hello Rick,
Thank you for contacting us.
I am not sure that I understand your scenario correctly, but I would like to suggest playing with the DisplayedCellsCount property which specifies the number of cells to be displayed in the view.
SchedulerTimescale currentScaling = timelineView.GetScaling();
currentScaling.Format = "dd MMM";
currentScaling.DisplayedCellsCount = 8;
You can modify the size of the columns with SetColumnWidth and GetColumnWidth methods. The values passed to the SetColumnWidth method are proportional and the actual width of the columns is calculated based on them. By default, all columns have a value of 1 and therefore if you set a value of 2 to any column, it will stay twice as bigger compared to the others.
SchedulerTimelineViewElement viewElement = (SchedulerTimelineViewElement)this.radScheduler1.ViewElement;
viewElement.SetColumnWidth(1, 2);
Please, refer to the Timeline View article for more details and properties.
I hope this helps.
Regards,
Peter
Progress Telerik
Get
quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.
Learn More.