axisDefaults.paneString
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 axisDefaults pane
<div id="chart"></div>
<script>
$("#chart").kendoChart({
axisDefaults: {
pane: "topPane"
},
panes: [
{ name: "topPane" },
{ name: "bottomPane" }
],
series: [
{ data: [1, 2, 3] }
]
});
</script>
In this article