我想知道如何删除js-year-calendar中的事件。
当我查找文档时,似乎没有方法可以删除日历中已经存在的任何事件。
有什么方法可以删除现有事件吗?
我指的是下面的文档。谢谢
https://year-calendar.github.io/js-year-calendar/documentation
let dataSource = [
{
startDate: new Date(2019, 1, 4),
endDate: new Date(2019, 1, 15),
color: "yellow"
}, {
startDate: new Date(2019, 3, 5),
endDate: new Date(2019, 5, 15),
color: "yellow"
}
];
// Create the calendar with the dataSource
let calendar = new Calendar('.calendar', {
style: 'background',
dataSource: dataSource,
enableRangeSelection: true
});