axisDefaultsObject
Default options for all chart axes.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
axisDefaults: {
line: {
color: "red",
width: 2
},
labels: {
color: "blue",
font: "12px Arial"
}
}
});
</script>
In this article