yAxis.background String
The background color of the axis.
Example - set the category axis crossing values
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{ type: "scatter", data: [[1, 2]] }
],
yAxis: {
background: "#ff0000"
}
});
</script>