valueAxis.name String
(default: "primary")
The unique axis name. Used to associate a series with a value axis using the series.axis option.
Example - set the value axis name
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{ data: [1,2,3] },
{ data: [1,2,3,4],
axis: "secondValueAxis"
}
],
panes:[
{ name: "topPane" },
{ name: "bottomPane" }
],
valueAxis: [
{ pane: "topPane" },
{ name: "secondValueAxis", pane: "bottomPane" }
]
});
</script>