The Chart widget uses modern browser technologies to render high-quality data visualizations. All graphics are rendered on the client using SVG with a fallback to VML for legacy browsers.
Kendo UI DataViz includes the following chart types:
Please visit the Kendo UI Roadmap for additional information about new Chart types and features.
<div id="chart"></div>
<div id="chart" style="width: 400px; height: 600px"></div>
$("#chart").kendoChart();
$("#chart").kendoChart({
title: {
text: "Kendo Chart Example"
}
});
The Charts can visualize series bound to both local and remote data.
Start by creating a series that displays inline data.$("#chart").kendoChart({
title: {
text: "Kendo Chart Example"
},
series: [
{ name: "Example Series", data: [200, 450, 300, 125] }
]
});
$("#chart").kendoChart({
title: {
text: "Kendo Chart Example"
},
series: [
{ name: "Example Series", data: [200, 450, 300, 125] }
],
categoryAxis:{
categories: [ 2000, 2001, 2002, 2003 ]
}
});
Explore the Chart demos for a quick overview of the major features. Detailed reference is available in the Configuration, Methods and Events tabs.