Scheduler Timeline View width to fit the container.

1 Answer 41 Views
Scheduler
Hernando
Top achievements
Rank 1
Iron
Iron
Hernando asked on 17 Jan 2025, 01:03 PM

Hi , currently working on a dashboard to display some data and need to display the Scheduler timeline view , but the problem is that the timeline width is too wide and you need to scroll to view events in the evening .

How to make the timeline view to fit the container?  as this is going to be display on a dashboard with no user interface (to scroll ).

Using Blazor 9 and latest kendo UI .

Thanks

1 Answer, 1 is accepted

Sort by
1
Accepted
Dimo
Telerik team
answered on 17 Jan 2025, 06:23 PM

Hello Hernando,

Please refer to the available Scheduler TimelineView parameters and:

  • Reduce the slot divisions (currently they are two). Note that this may also reduce the precision of the displayed start / end times.
  • Reduce the column width. Note. that this must be a fixed number and the columns don't resize at runtime.
  • Change the start and end times, if possible.
<TelerikScheduler>
    <SchedulerViews>
        <SchedulerTimelineView SlotDivisions="1"
                               ColumnWidth="100"
                               StartTime="@(DateTime.Today.AddHours(6))"
                               EndTime="@(DateTime.Today.AddHours(18))" />
    </SchedulerViews>
</TelerikScheduler>

 

Regards,
Dimo
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.

Hernando
Top achievements
Rank 1
Iron
Iron
commented on 20 Jan 2025, 10:10 AM

Thanks that's perfect
Hernando
Top achievements
Rank 1
Iron
Iron
commented on 20 Jan 2025, 03:10 PM | edited

Hi @Dimo another question how to change the height of the slot to add more data . thanks  
Dimo
Telerik team
commented on 21 Jan 2025, 08:07 AM

I am afraid that's not supported at this point. You can vote for and follow these feature requests:

Tags
Scheduler
Asked by
Hernando
Top achievements
Rank 1
Iron
Iron
Answers by
Dimo
Telerik team
Share this question
or