state.area.marginNumber|Object
The margin of the chart area. A numeric value will set all margins.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
area: {
margin: {
top: 10,
right: 15,
bottom: 20,
left: 25
}
}
}
});
</script>