series.yAxisString(default: "primary")
The name of the Y axis to use.
** Available for bubble, scatter, scatterLine and polar series. **
Example - set the chart series yAxis
<div id="chart"></div>
<script>
$("#chart").kendoChart({
yAxis: [
{ name: "primaryY" },
{ name: "secondaryY" }
],
series: [
{
type: "scatter",
yAxis: "primaryY",
data: [[1, 2], [2, 3], [3, 4]]
},
{
type: "scatter",
yAxis: "secondaryY",
data: [[1, 10], [2, 15], [3, 20]]
}
]
});
</script>