Hi all
I want to send graph data to table. How will I do it in mvc razor? I have following code...
@(Html.Kendo().Chart<Hb.Model.ChartDataViewModel>()
.Name("viewcountchart")
.Series(series =>
{
series.Area(model => model.Amount)
&n ...
Go to the complete details ...