Thank you for contacting Syncfusion support.
We have prepared the sample to display the resource grouping only in Agenda view which can be download from the below location.
Kindly refer the below code example used in the sample.
<Code>
function onNavigation(args) { // this function will be called when the view navigated
if (this.model.currentView == "agenda") {
obj = {
resources: ["Rooms", "Owners"]
};
$("#Schedule1").ejSchedule("option", "group", obj);
}
else
this.model.group = null;
}
</Code>
Regards,
Karthigeyan