seriesDefaults.bubble Object

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

Example - set the bubble chart default options

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    bubble: {
      color: "green",
      opacity: 0.5
    }
  },
  series: [
    { type: "bubble", data: [ [1, 2, 3] ] }
  ]
});
</script>
In this article