or
Is it possible to change the style of lines between connection points to be smooth/spline as opposed to straight/stepped?
An example of the style i'm after can be seen here.
public HttpResponseMessage Post(Batch model){ HttpResponseMessage response; if (ModelState.IsValid) { service.Create(model.ReceiptLineURID, model); DataSourceResult result = new DataSourceResult { Data = new[] { model }, Total = 1 }; response = Request.CreateResponse(HttpStatusCode.Created, result); response.Headers.Location = new Uri(Url.Link("DefaultApi", new { id = model.BatchNo })); } else { response = Request.CreateErrorResponse(HttpStatusCode.BadRequest, ModelState); } return response;} @(Html.Kendo().Grid<CompanyViewModel>() .Name("Companies") .DataSource(source => source .Ajax() .Read(read => read.Action("_Index", "Company")) .Events(events => events.Error("onError")) ) .Columns(c => { c.Bound(i => i.Lock) .ClientTemplate("<span class='glyphicon glyphicon-lock lockable'></span>"); c.Bound(i => i.Name); } )<script type="text/javascript"> $(function () { $('.lockable').click(function (arg) { alert('Hello World'); var grid = $('#Companies').data('kendoGrid'); var currentCompany = grid.dataItem($(this).closest("tr")); // ajax call comes here with ID of currentCompany }); });