panes.height Number
The chart pane height in pixels.
Example - set the chart pane height
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{ data: [1, 2, 3] },
{ data: [1, 2, 3, 4], axis: "bottom" }
],
valueAxis: [
{ pane: "top-pane" },
{ pane: "bottom-pane", name: "bottom" }
],
panes: [
{ name: "top-pane", height: 200 },
{ name: "bottom-pane", height: 300 }
]
});
</script>