categoryAxis.colorString
Color to apply to all axis elements. Any valid CSS color string will work here, including hex and rgb. Individual color settings for line and labels take priority.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
categoryAxis: {
color: "green"
}
});
</script>