xAxis.max Object
The maximum value of the axis.
Example - set the scatter chart x axis maximum
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "scatter",
data: [[1, 1],[2, 2]]
}],
xAxis: {
max: 5
}
});
</script>