state.areaObject(required)
The chart area configuration options. Represents the entire visible area of the chart.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
area: {
background: "#f5f5f5",
margin: {
top: 20,
right: 15,
bottom: 25,
left: 30
}
}
}
});
</script>
In this article