Skip to content

Instantly share code, notes, and snippets.

@Pierry
Created October 1, 2013 13:02
Show Gist options
  • Save Pierry/6778102 to your computer and use it in GitHub Desktop.
Save Pierry/6778102 to your computer and use it in GitHub Desktop.
Criando gráfico com a kendo com elementos
<!--Chart div-->
<div id="chart"></div>
//Add chart initialization code
$("#chart").kendoChart({
categoryAxis:{
categories: [2005, 2006, 2007, 2008, 2009]
},
seriesDefaults: {
type: "line"
},
series: [
{ name: "United States", data:[67.96, 68.93, 75, 74, 98] },
{ name: "World", data: [15.7, 16.7, 20, 23.5, 30] }
],
valueAxis:{
labels:{
format: "{0}%"
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment