categoryAxis.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
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [
{ date: new Date("2012/01/01"), close: 300, volume: 40000 },
{ date: new Date("2012/01/02"), close: 310, volume: 50000 },
{ date: new Date("2012/01/03"), close: 320, volume: 45000 }
]
},
dateField: "date",
categoryAxis: {
pane: "bottom"
},
series: [{
type: "candlestick",
field: "close"
}]
});
</script>
In this article