Display more than 1 year in Kendo UI for jQuery? - kendo-ui

Some clinical studies can take up to 5 years or more, and I want to be able to show an entire study and its sub-tasks in a Kendo Gantt chart. I want to show periods of time longer than the current maximum of 1 year that is built into Kendo UI for jQuery v2018.3.1017, is that possible?
I'd like to be able to show a maximum of 6 years. Ideally the header would change to be able to see Quarter/Year rather than Month.
Is this possible?

The built-in views for the Gantt are: "day", "week", "month" and "year". So if you need to show longer period you need to create a custom view. Check the custom view example in the documentation. It shows how to create a multi-year view and display quarters as well.

Just to close the loop: here is the response I received from the Telerik Support folks.
From the provided information I am not sure if the widget you intend to use is a Kendo Gantt or Scheduler. However, in both cases implementing a custom view will be needed. Below you will find links with examples of implementing custom views in Gantt and Scheduler:
creating-custom-view
timeline-with-dynamic-length
custom-view

Related

Is there a multi-month view for kendo-ui Scheduler?

I needed to display an entire year or a multiple month view because we only have 1 or 2 events a month.
Is it possible to do this in kendo-ui Scheduler?
I know there is a multiple day view extension, but is there something similar for months?
var ThreeDayView = kendo.ui.MultiDayView.extend({
For such scenario you can use the timelineMonth view type of the control as for example it is use in this demo. There is no other multi-month view.

dhtmlx scheduler: display multiple months on single view

I am using dhtmlx scheduler, Wanted to display multiple months on single view. I tried units view But nothing help. Is there any ideas to implement that without changing the source code?
You can set year view in your app. Also, it's possible to set a required number of months displayed on the screen in this view.
More info and demo:
http://docs.dhtmlx.com/scheduler/year_view.html
http://docs.dhtmlx.com/scheduler/samples/03_extensions/04_year_view.html
There is way to create a timeline view with multiple months:
http://docs.dhtmlx.com/scheduler/snippet/4774ef81
If you don't need sections in view, you can hide them:
http://docs.dhtmlx.com/scheduler/snippet/b35f0aad
Also, you can create a custom view. But if you need to display a large amount of time - this is not the most suitable way.
http://docs.dhtmlx.com/scheduler/custom_views.html
http://docs.dhtmlx.com/scheduler/snippet/aa263cdb

Kendo UI Scheduler - Solution to show all days in line such as timeline

We are using the grouping property of Scheduler. It is really useful. We show our all technic employees in vertical grouping.
We want to show all days of month in a line like timeline view.
Is it possible?
This can be achieved by creating custom view that extends the desired build-in one and overriding the methods responsible for calculating the visible date range. Such demo can be found in Kendo UI CodeLibraries:
Scheduler: Custom view with custom date range and swipe support

Kendo UI Scheduler-Select a range consisted to completely months when it is at the Month view

I am using Kendo UI Scheduler. I configured it like it would have a Month view. I would like to select a range consists two months. Can I select these ranges? as I saw, the Scheduler, whenever We mention the Months, allows selecting only 14 days... İn essence, I would like to select days through the months.
Don't know if extending the month view is exactly possible or not. But, creating a custom view may be a solution. Have a look on this LINK. Also have a look what telerik admin says about it HERE.

Kendo UI - Grid questions

I am evaluating Kendo UI for use of it in our project. I would be using the Kendo UI JS (not the ASP.Net MVC one).
I stumbled upon a couple of things Kendo grid does not support. I just want clarification on some of the functionalities (some of the questions may sound very basic. Sorry I am just evaluating on the basis of demos provided and trying to fit in our requirement). I do not require any code but just require your help in evaluating kendo UI
Kendo Grid does not support Grouping of Headers ?
|-----------Header Master------------------|
|--Sub Header-------|-----Sub Header----|
Kendo Grid does not support Frozen Columns ?
Does Kendo Grid support multiple summary columns with custom aggregate(that would be pulled from data source and hence not calculated on client side) ? How can we achieve this ? By Customer Footer template ?
I could not find any example on the website, which shows how kendo ui grid deals with large data. say 10,000 rows ?
Answers to the questions at the current moment (28/10/2013):
Kendo Grid does not support grouped Headers ( you can search the
forums for some feasible work-arounds)
Kendo Grid does not
supported frozen-columns, however it should be implemented for the
future releases.
What is supported as footer templates is
demonstrated here.
What do you mean by larget data? If you
enable server paging only the records for a specific page will be
send to the client, so you can use it with as many records as you
want. Also check virtualization (please notice it still works
the same as a paging mechanism, so you can use it again the same way
as in a regular paging scenario)

Resources