seriesDefaults.overlay Object
The chart series overlay options.
Example - set the chart series overlay options
<div id="chart"></div>
<script>
$("#chart").kendoChart({
seriesDefaults: {
overlay: {
gradient: "none"
}
},
series: [
{ data: [ 1, 2, 3] }
]
});
</script>
seriesDefaults.overlay.gradient String
The chart series gradient.
The supported values are:
- "glass" (bar, column and candlestick series)
- "none"
- "roundedBevel" (donut and pie series)
- "sharpBevel" (donut and pie series)
Example - set the chart series gradient options
<div id="chart"></div>
<script>
$("#chart").kendoChart({
seriesDefaults: {
overlay: {
gradient: "none"
}
},
series: [
{ data: [ 1, 2, 3] }
]
});
</script>