Timeline Year View or Scaled View

1 Answer 53 Views
Gantt
Josh
Top achievements
Rank 1
Josh asked on 30 Mar 2023, 01:43 PM
Is it possible to add a Year View or some sort of project wide scaled view to the timeline?  We often have long projects and would like to scale the timeline to show the entire project in the window both for web use and for pdf export.

1 Answer, 1 is accepted

Sort by
0
Aleksandar
Telerik team
answered on 04 Apr 2023, 05:05 AM

Hi Josh,

The Gantt component provides the option to add an Year view:

@(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
    .Name("gantt")
    .Views(views =>
    {
        views.DayView();
        views.WeekView();
        views.MonthView();
        views.YearView(yView => yView.Selected(true));
    })
..
)

Here is a REPL with the year view applied. Would this work for you?

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

Tags
Gantt
Asked by
Josh
Top achievements
Rank 1
Answers by
Aleksandar
Telerik team
Share this question
or