I created a chart in my dashboard of my program as you can see :
I initialize the data with this code in my load_form
chartControlMIVBaseDateTime.DataSource = _materialIssueVoucherRepository.ViewImivBasedOnDates().ToList();
// Generate a data table and bind the chart to it.
// Specify data members to bind the chart's series template.
chartControlMIVBaseDateTime.SeriesDataMember = "Count";
chartControlMIVBaseDateTime.SeriesTemplate.ArgumentDataMember = "DateTime";
chartControlMIVBaseDateTime.SeriesTemplate.ValueDataMembers.AddRange(new string[] { "Count" });
The Count in numerical ,but the problem is i set the chart to show this type of presentation
But it doesn't work