series.axis String (default: "primary")

The name of the value axis to use.

The axis option is supported for scatter plots. See xAxis and yAxis for scatter plots.

Example - set the chart series value axis

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  valueAxis: [
    { name: "first" },
    { name: "second" }
  ],
  series: [
    { data: [800, 100, 300],  axis: "first" },
    { data: [1, 5],  axis: "second" }
  ]
});
</script>
In this article