yAxis Array

The y axis configuration options of the scatter chart. Supports all valueAxis options.

Example - set the scatter chart y axis

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    { type: "scatter", data: [[1, 2]] }
  ],
  yAxis: {
    color: "red",
    min: -5,
    max: 5,
    labels: {
      background: "green",
      color: "white"
    }
  }
});
</script>
In this article