seriesDefaults.lineObject
The line configuration options. The default options for all line series. For more details see the series options.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dateField: "date",
seriesDefaults: {
line: {
width: 3,
dashType: "dash"
}
},
series: [{
type: "line",
color: "red",
data: [
{ date: new Date(2000, 1, 1), value: 300 },
{ date: new Date(2000, 1, 2), value: 200 }
]
}]
});
</script>