Hi mehmet,
Syncfusion Greetings.
You can get the start and end date of current date range by making use of actionComplete event with args.requestType viewNavigate and dateNavigate. For the same we have prepared the below sample, kindly refer it.
//To get the start and end dates of current view and current Date range
onActionComplete(args): void {
if ( args.requestType === "viewNavigate" || args.requestType === "dateNavigate") {
var currentViewDates = this.scheduleObj.getCurrentViewDates();
var startDate = currentViewDates[0];
var endDate = currentViewDates[currentViewDates.length - 1];
console.log(startDate);
console.log(endDate);
}
}
Kindly try with the above sample and let us know, if you need any further assistance on this.
Regards,
M.Vinitha devi