Hi,
Will render one year data in the scheduler by passing dates to startDate and endDate.
I want to center the view from current date to 3 days which is achieved through zoomToSpan
let startDate = new Date();
let endDate = new Date();
endDate.setDate(startDate.getDate() + 3);
this.schedulerPro.zoomToSpan({
startDate: startDate,
endDate: endDate
});
But after doing this, startDate and endDate is getting changed. I am not able to see one year data.