This is a migrated thread and some comments may be shown as answers.

Width of resource column in timelineview

1 Answer 63 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Indranik
Top achievements
Rank 1
Indranik asked on 12 Dec 2008, 01:24 PM
How do I increase the width of resource column in timeline view? Furthermore are the columns resizable?

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 12 Dec 2008, 02:37 PM
Hello Indranik,

You can set dynamically the ColumnWidth property in NavigationComplete for Timeline view:

protected void RadScheduler1_NavigationComplete(object sender, Telerik.Web.UI.SchedulerNavigationCompleteEventArgs e)  
    {  
        if (e.Command == Telerik.Web.UI.SchedulerNavigationCommand.SwitchToTimelineView)  
            RadScheduler1.ColumnWidth = Unit.Pixel(100);  
    } 




All the best,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Scheduler
Asked by
Indranik
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or