categoryAxis.pane String
The name of the pane that the category axis should be rendered in. The axis will be rendered in the first (default) pane if not set.
Example - set the category axis pane
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{ data: [1,2,3] },
{ data: [1,2,3,4],
axis: "secondValueAxis",
categoryAxis: "secondCategoryAxis"
}
],
panes:[
{ name: "topPane" },
{ name: "bottomPane" }
],
valueAxis: [
{ pane: "topPane" },
{ name: "secondValueAxis", pane: "bottomPane" }
],
categoryAxis: [
{ pane: "topPane" },
{ name: "secondCategoryAxis", pane: "bottomPane" }
]
});
</script>