Skip to content

Instantly share code, notes, and snippets.

@lohithgn
Created December 6, 2012 15:55
Show Gist options
  • Save lohithgn/4225547 to your computer and use it in GitHub Desktop.
Save lohithgn/4225547 to your computer and use it in GitHub Desktop.
Charting Example using Kendo UI ASP.NET MVC Wrapper
@(Html.Kendo().Chart()
.Name("Chart1")
.Title("Internet Users")
.Legend(configurator =>
{
configurator.Position(ChartLegendPosition.Right);
})
.Series(series =>
{
series.Column(chartData);
})
.CategoryAxis(configurator =>
{
configurator.Categories(chartCategories);
})
.Tooltip(configurator =>
{
configurator.Visible(true);
configurator.Format("{0}%");
})
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment