centuryCellsFormat String(default: "long")

Specifies the format of the century cells.

  • "long" - The cells will display a decade range 2000-2009, 2010-2019.
  • "short" - The cells will display just the starting year of the decade 2000, 2010.

Example - render the short version of the century cells

<div id="multiViewCalendar"></div>
<script>
    $("#multiViewCalendar").kendoMultiViewCalendar({
        centuryCellsFormat: "short",
        start: "century"
    });
</script>
In this article