seriesDefaults.column Object

The column chart series options. Accepts all values supported by the series option.

Example - set the column chart default options

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    column: {
      color: "red",
      opacity: 0.1
    }
  },
  series: [
    { type: "column", data: [3, 4] }
  ]
});
</script>
In this article