seriesDefaults.area Object
The area chart series options. Accepts all values supported by the series option.
Example - set the area chart default options
<div id="chart"></div>
<script>
$("#chart").kendoChart({
seriesDefaults: {
area: {
color: "red",
opacity: 0.1
}
},
series: [
{ type: "area", data: [1, 2] },
{ data: [3, 4] }
]
});
</script>