xAxis.axisCrossingValue Object|Date|Array

Value at which the Y axis crosses this axis. (Only for object)

Value indices at which the Y axes cross the value axis. (Only for array)

Date at which the Y axis crosses this axis. (Only for date)

Set a value greater than or equal to the axis maximum value to denote the far end of the axis.

Example - set the scatter chart x axis crossing values

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    { type: "scatter", data: [[1, 2]] }
  ],
  xAxis: {
    axisCrossingValue: [1, 2]
  }
});
</script>
In this article