series.overlay Object

The chart series overlay options.

Example - set the chart series overlay options

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [ {
    overlay: {
      gradient: "none"
    },
    data: [ 1, 2, 3]
  }]
});
</script>

series.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({
  series: [ {
    overlay: {
      gradient: "none"
    },
    data: [ 1, 2, 3]
  }]
});
</script>
In this article