New to Kendo UI for jQuery? Start a free 30-day trial
Window Configuration
To configure the Chart Wizard Window utilize the window object and set the options provided by the nested Window component.
The following example demonstrates how to customize the ChartWizard window.
<div id="chartwizard"></div>
$("#chartwizard").kendoChartWizard({
dataSource: [
[
{ field: 'Product Name', value: 'Calzone' },
{ field: 'Quantity', value: 1 },
{ field: 'Price', value: 12.39 },
{ field: 'Tax', value: 2.48 },
{ field: 'Total', value: 14.87 }
]
],
window: {
height: 600,
width: 500,
modal: false,
title: 'My custom window title,
draggable: false
}
});