messages.format.chartArea.marginsObject

Specifies the text for the margins area of the chartArea panel

Example

<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
    messages: {
        format: {
            chartArea: {
                margins: {
                    default: "Default Margins",
                    custom: "Custom Margins"
                }
            }
        }
    }
});
</script>