valueAxis.pane String

The name of the pane that the value axis should be rendered in. The axis will be rendered in the first (default) pane if not set.

Example - set the value axis pane

<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>
In this article