messages.format.chartArea.backgroundObject

Specifies the text for the background area of the chartArea panel

Example

<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
    messages: {
        format: {
            chartArea: {
                background: {
                    default: "Default Background",
                    color: "Background Color"
                }
            }
        }
    }
});
</script>