New to Kendo UI for jQueryStart a free 30-day trial

Series.overlay

configuration

The chart series overlay options.

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

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