xAxis.pane String
The name of the pane that the axis should be rendered in. The axis will be rendered in the first (default) pane if not set.
Example - set the scatter chart x axis pane
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{ type: "scatter", data: [[1, 2]], xAxis: "first", yAxis: "first" },
{ type: "scatter", data: [[5, 6]], xAxis: "second", yAxis: "second" }
],
panes: [
{ name: "topPane" },
{ name: "bottomPane" },
],
xAxis: [
{ name: "first"},
{ name: "second", pane: "bottomPane" }
],
yAxis: [
{ name: "first"},
{ name: "second", pane: "bottomPane" }
]
});
</script>