options Object

The configuration options with which the chart is initialized.

Call the refresh method after modifying the options field.

Example - change the chart options

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    { type: "line", data: [1, 2] }
  ]
});
var chart = $("#chart").data("kendoChart");
chart.options.series[0].type = "bar";
chart.refresh();
</script>
In this article