Version 7 was just released!
The docs will be moved here soon.
Visit the external v7 docs site
Resource::remove
Programmatically removes a resource from the calendar.
resource.remove()
Example:
var calendar = new Calendar(calendarEl, {
resources: [
{ id: 'a', title: 'Resource A' },
{ id: 'b', title: 'Resource B' }
]
});
var resourceA = calendar.getResourceById('a');
resourceA.remove();