xAxis.color String

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

Example - set the scatter chart x axis color

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