defaultState.stack.type String
The stack configuration of the series.
The supported stack values are:
- "normal"
- "100%"
Example - set the "stack type" ChartWizard
<div id="chartwizard"></div>
<script>
$("#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 }
],
],
defaultState: {
stack: { type: "100%" }
}
});
</script>