or
<!--This CSS entry was added by the Kendo UI VS Extensions for compatibility reasons--> <link href="@Url.Content("~/Content/kendo.compatibility.css")" rel="stylesheet" type="text/css" />.k-grid th a { position:static} .k-grid .k-grid-header th a { padding: .5em .2em .4em; }html body { border: 0} 
Html.Kendo().Chart(Model.Results) .Name("chartPCT") .Title("% Return") .Legend(legend => legend.Visible(false)) .Series(series => series.Column(model => model.Metrics.Return) .Name(Model.ColumnTitle) .Labels(false) ) .ValueAxis(axis => axis.Numeric() .Labels(labels => labels.Format("{0}%"))) .CategoryAxis(axis => axis .Categories(model => model.Observation) .Labels(labels => { labels.Format("MMM"); })) .Render();$("#grid").kendoGrid({ dataSource: { data: [ { time: "1:00", city: "Chicago", temperature: { value: 89, displayString: "89 F" } } ] }, columns: [ { field: "time", title: "Time" }, { field: "city", title: "City" }, { field: "temperature.displayString", title: "Temperature" } ]});