Change Theme
SASS Themes (beta)
LESS Themes
Chart API / Methods
API Functions
refresh() will be called on each configuration change
Description
This example illustrates how to get reference to the Kendo UI Chart and its series client-side objects, which allows you to customize series options like type, appearance, stacking and many more:
- Get reference to the Kendo UI Chart client-side object: var chart = $("#chart").data("kendoChart");
- Get reference to the series client object: series = chart.options.series,
- Set the series type: series[i].type = type;
- Stack the series: series[i].stack = stack;
You can find a complete list of the series attributes in the API documentation.
HTML5/JavaScript source
Also available for:
- index.html
- Widget configuration