axisDefaults.colorString
The color to apply to all axis elements. Accepts a valid CSS color string, including hex and rgb.
Example - set the axisDefaults color
<div id="chart"></div>
<script>
$("#chart").kendoChart({
axisDefaults: {
color: "red"
},
series: [
{ data: [1, 2, 3] }
]
});
</script>