Fullcalendar-不要在星期日显示任何事件

I am using fullcalendar-2.2.7-yearview. All working fine but I don't want to show the events on Sundays.

For example is I am having an event from October 1,2016 to October 22,2016 which includes two Sundays in that. But I don't want to mark any events on Sunday. Also I don't want to hide Sundays from calendar too.

Please suggest me a way to handle this. Thanks in advance.

eventRender: function(event)
             {
                 if(moment(event.start).isoWeekday() == 7)
                 {
                     //If the event is on a Sunday, don't render it.
                     return false;
                 }
             }

Edit: I just reread the issue and didn't realize that this would be for multi-day events that extend through Sundays. I guess the solution there would be to split the events as suggested above and then use the method here to avoid rendering on sundays.