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