or
@( Html.Kendo().Grid(Model) .Name("Grid") .ClientDetailTemplateId("inventoryTemplate") .DataSource(ds => ds.Ajax() .PageSize(200) // or .PageSize(20) if iPad .Model(m => { m.Id(p => p.StockID); }) .Read(r => r.Action("Read", "Home"))
).Columns(columns => { columns.Bound(c => c.CustomerID).Title("Picture"); columns.Bound(c => c.ContactName).Title("Name"); columns.Bound(c => c.CompanyName); columns.Bound(c => c.Country); columns.Bound(c => c.Address); columns.Bound(c => c.Phone); }) I still get the concept I think but it would be nice if they actually matched.l
@(Html.Kendo().LinearGauge().Name("LinGauge" + @Model.ComponentName.Replace(" ","")) .Pointer(pointer => pointer.Size(30.0) .Color("Black") .Value(@Model.ComponentScore / 1000.0) .Shape(GaugeLinearPointerShape.Arrow)) .Scale(scale => scale.Min(0.0) .Max(1.0) .Vertical(false) .MinorTicks(t => t.Visible(false)) .MajorTicks(t => t.Visible(false)) .Labels(l=>l.Visible(false))))