This is my code which is working currently I would like to know if these two things are possible when using mvc charts? And how to go about doing them
My controller
public ActionResult CharterColumn()
{
ArrayList xValue = new ArrayList();
ArrayList yValue = new ArrayList();
var results = (from c in db.Timesheets select c);
results.ToList().ForEach(rs => xValue.Add(rs.Date));
//I want to format this to show the only the months on the x axis
results.ToList().ForEach(rs => yValue.Add(rs.Hours));
//And I want to calculate the sum of the hours for each month worked by a specific employee
new Chart(width: 800, height: 400, theme: ChartTheme.Yellow)
.AddTitle("Test")
.AddSeries("Default", chartType: "Column", xValue: xValue, yValues: yValue)
.Write("bmp");
return null;
}
and my view
<div>
<img src= "@Url.Action("CharterColumn")" alt="Chart"/>
</div>
You can group the
TimeSheet
records by month and year like this:I'm using DateTimeFormatInfo to get the month's name. You can also achieve this without this: