TOAST UI Calendar is A JavaScript schedule calendar that is full featured. Now your service just got the customizable calendar.
<!-- HTML -->
<div id="calendar" style="height: 800px;"></div>
<!-- JavaScript -->
<script type="module">
import Calendar from 'tui-calendar'; /* ES6 */
import "tui-calendar/dist/tui-calendar.css";
var calendar = new Calendar('#calendar', {
defaultView: 'month',
taskView: true,
template: {
monthDayname: function(dayname) {
return '<span class="calendar-week-dayname-name">' + dayname.label + '</span>';
}
}
});
</script>