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