state.series.widthNumber
The line width.
The
widthoption is supported when series.type is set to "line".
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
series: [{
type: "line",
width: 4,
data: [100, 150, 200]
}]
}
});
</script>
In this article