Hey Can anyone help me with below code .
below is my index.chtml code and i would like to render this to a chart.
@model IEnumerable<DashBoardApp.Models.GetCategory_Result>
@{
ViewBag.Title = “Index”;
}
<table>
<tr>
<th>
@Html.DisplayNameFor(model => model.First().Branch)
</th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(model => item.Category)
</td>
<td>
@Html.DisplayFor(model => item.Sales)
</td>
</tr>
}
</table>