valueAxis.axisCrossingValue Object|Date|Array

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

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

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

Example - set the value axis crossing values

<div id="chart"></div>
<script>
$("#chart").kendoChart({
    series: [{
      data: [4,7,10]
    }],
    categoryAxes: [{
      categories: ["A", "B", "C"]
    }, {
      categories: ["D", "E", "F"]
    }],
    valueAxis:  {
      axisCrossingValues: [0, 12]
    }
});
</script>
In this article