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 }); });01.@(Html.Kendo().Grid<Receipt>()02. .Name("GridReceipts")03. .Columns(columns => {04. columns.Bound(o => o.Id);05. columns.Bound(o => o.Supplier);06. columns.Bound(o => o.Status);07. columns.Command(c => {08. c.Edit().Text(" ");09. c.Destroy().Text(" ");10. });11. })12. .DataSource(d => d13. .WebApi()14. .Model(m => m.Id(o => o.Id))15. .Create(c => c.Url(Url.HttpRouteUrl("DefaultApi", new { controller = "Receipts" })))16. .Read(c => c.Url(Url.HttpRouteUrl("DefaultApi", new { controller = "Receipts" })))17. .Update(c => c.Url(Url.HttpRouteUrl("DefaultApi", new { controller = "Receipts", id = "{0}" })))18. .Destroy(c => c.Url(Url.HttpRouteUrl("DefaultApi", new { controller = "Receipts", id = "{0}" })))19. )20. .ToolBar(toolbar => toolbar.Create())21. .Editable(e => e.Mode(GridEditMode.PopUp).TemplateName("Receipt"))22. .Deferred()23.)01.@model Receipt02. 03.<div class="k-edit-label">@Html.LabelFor(m => m.Supplier)</div>04. <div class="k-edit-field">05. @(Html.Kendo().AutoCompleteFor(m => m.Supplier)06. .Name("ACSupplier")07. .DataSource(s => {08. s.Read("Autocomplete", "Suppliers");09. })10. .DataTextField("Name")11. .MinLength(2)12. )13.</div>