Skip to content

Instantly share code, notes, and snippets.

@Pierry
Created October 1, 2013 12:57
Show Gist options
  • Save Pierry/6778047 to your computer and use it in GitHub Desktop.
Save Pierry/6778047 to your computer and use it in GitHub Desktop.
Criando gráfico simples com a Kendo
<!--Chart div-->
<div id="chart"></div>
//Add chart initialization code
$("#chart").kendoChart({
seriesDefaults: {
type: "line"
},
series: [
{ name: "United States", data: [67.96, 68.93, 75, 74, 78] },
{ name: "World", data: [15.7, 16.7, 20, 23.5, 26.6] }
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment