categoryAxis.maxObject
The last date displayed on the category date axis. By default, the minimum date is the same as the last category. This is often used in combination with the categoryAxis.min and categoryAxis.roundToBaseUnit options to set up a fixed date range.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
categoryAxis: {
type: "date",
categories: [new Date(2023, 0, 1), new Date(2023, 0, 15), new Date(2023, 0, 30)],
max: new Date(2023, 1, 1)
}
});
</script>
In this article