I've been trying to use chart and sparkline.
I have a few questions:
1) I've read in the forum that there should be no difference between the two except visual differences (http://www.telerik.com/forums/sparkline-vs-chart-efficiency-).
This doesn't seem to be the case: http://plnkr.co/edit/12gvS94rPTrR7t35wCCH?p=preview
I've created a chart (http://plnkr.co/edit/12gvS94rPTrR7t35wCCH?p=preview) and then a sparkLine (http://plnkr.co/edit/6LRb16QIgUuoWAbxLuyq?p=preview) with the same configuration (same datasource and same options file) and it gives an error when creating the sparkline but not when creating the chart.
2) How can I get the "sparkLine" effect in a "chart", or if it's easier, how to make the "sparkLine" look as good as a chart?
3) I've read these posts:
http://www.telerik.com/forums/get-chart-coordinates-for-mouse-position
http://www.telerik.com/forums/mouse-position---data---position-are-not-the-same-values
They show how to get mouse position in Silverlight and WPF.
How can I get the mouse coordinates using javascript/jQuery?
Thanks

@(Html.Kendo().Grid<Client.Website.Models.ClientModel>().Name("ClientGrid") .HtmlAttributes(new { style = "height:100%; clear:both;table-layout: fixed;" }) .Columns(columns => { columns.Bound(c => c.ClientId).Hidden(); columns.Bound(c => c.Name); columns.Bound(c => c.IsActive).Width(80).Filterable(filter=>filter.Enabled(true)); columns.Bound(c => c.Notes)}) .DataSource(dataSource => dataSource .Ajax() .PageSize(20) .Read(read => read.Action("GetClients", "Client")) ) .Scrollable() .Pageable() .Sortable() .Selectable() .Filterable())