Chart

Description

The Chart widget can create bar, line, area, and scatter charts with a variety of options.

Official Kendo UI Chart documentation

Examples

This example demonstrates generating a basic area chart.

<div data-bind="kendoChart: { data: items, series: [{ name: 'sample', field: 'value' }] }"> </div>
var ViewModel = function() {
    this.items = [
        { name: "one", value: 10 },
        { name: "two", value: 20},
        { name: "three", value: 30 }
    ];
};

                            ko.applyBindings(new ViewModel());
05101520253035sample

Live Options

The kendoChart.md binding accepts all of the options that can be specified for the widget. However, when bound against an observable, these live options will update the widget or respond to updates from interactions with the widget.
data

An observableArray or kendo.data.dataSource to use in the chart

widget

If specified, will populate an observable with a reference to the actual widget

Future Plans

Possibly adding additional live options to observe other configuration choices and refresh the chart.