Support Forum
Dear Team,
We really need your support, We have a urgent request by client for Chart view.
Now We use viewPreset = 'weekAndDay' but it show all day in that week, Our Client only need show data between start date and end date. How can we make viewPreset is not grouped by week, Please your advice and support.
We really need your support, We have a urgent request by client for Chart view.
Now We use viewPreset = 'weekAndDay' but it show all day in that week, Our Client only need show data between start date and end date. How can we make viewPreset is not grouped by week, Please your advice and support.
- Attachments
-
- calender by.png (50.07 KiB) Viewed 15254 times
Last edited by didot on Tue Oct 29, 2019 3:00 am, edited 1 time in total.
Hi!
You could set startDate and endDate for Scheduler to show the exact period.
https://www.bryntum.com/docs/scheduler/#Scheduler/view/TimelineBase#config-startDate
In config
or in code
You could set startDate and endDate for Scheduler to show the exact period.
https://www.bryntum.com/docs/scheduler/#Scheduler/view/TimelineBase#config-startDate
In config
new Scheduler({
startDate : new Date(2019, 10, 1),
endDate : new Date(2019, 10, 11),
...
});
scheduler.startDate = new Date(2019, 10, 1);
scheduler.endDate = new Date(2019, 10, 11);
Hi!
Please try to use autoAdjustTimeAxis: false config option.
https://www.bryntum.com/docs/gantt/#Scheduler/view/TimelineBase#config-autoAdjustTimeAxis
Please try to use autoAdjustTimeAxis: false config option.
https://www.bryntum.com/docs/gantt/#Scheduler/view/TimelineBase#config-autoAdjustTimeAxis