yAxis.name String (default: "primary")

The unique axis name. Used to associate a series with a y axis using the series.yAxis option.

Example - set the scatter chart y axis name

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    { type: "scatter", data: [[1000, 2000]], yAxis: "first" },
    { type: "scatter", data: [[5, 6]], yAxis: "second" }
  ],
  yAxis: [
    { name: "first"},
    { name: "second"}
  ]
});
</script>
In this article