categoryAxis.axisCrossingValueObject | Date | Array
Category index at which the first value axis crosses this axis. (Only for object)
Category indicies at which the value axes cross the category axis. (Only for array)
**Note:**Specify an index greater than or equal to the number of categories to denote the far end of the axis.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
data: [1, 2, 3, 4, 5],
categoryAxis: {
axisCrossingValue: 2,
categories: ["A", "B", "C", "D", "E"]
}
});
</script>
In this article