valueAxis.color String

The color of the value axis. Accepts a valid CSS color string, including hex and rgb.

Example - set the value axis color

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  valueAxis: {
    color: "green"
  },
  series: [{
    data: [1, 2]
  }]
});
</script>
In this article