Skip to content

Instantly share code, notes, and snippets.

@Pierry
Created October 1, 2013 13:29
Show Gist options
  • Save Pierry/6778450 to your computer and use it in GitHub Desktop.
Save Pierry/6778450 to your computer and use it in GitHub Desktop.
Criando multiplos gráficos com a Kendo
<!-- Multi-chart div -->
<div id="multi"></div>
// Add chart configuration code
$("#multi").kendoChart({
series: [{
type: "line",
name: "World",
data: [15.7, 16.7, 20, 23.5, 26.6]
}, {
type: "bar",
name: "United States",
data: [67.96, 68.93, 75, 74, 78]
}],
categoryAxis: {
categories: [2005, 2006, 2007, 2008, 2009]
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment