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="calendar"></div>
<script>
$("#calendar").kendoCalendar({
centuryCellsFormat: "short",
start: "century"
});
</script>