Hi,
i am very new to telerik reporting, i need to develop a bar chart, based on the data from datatable.
my datatable design.
//data
i need to display the chart as match as the attachment file Bar chart.
if any one help me with example will be very helpfull for me.
Thanks in advance..
i am very new to telerik reporting, i need to develop a bar chart, based on the data from datatable.
my datatable design.
DataTable
dtStudent = new DataTable();
dtStudent.Columns.Add(
"Date", typeof(DateTime));
dtStudent.Columns.Add(
"Group", typeof(string));
dtStudent.Columns.Add(
"Score", typeof(double));
//data
dtStudent.Rows.Add(
"2013-01-12", "Drawing", 25.0);
dtStudent.Rows.Add(
"2013-01-12", "Music", 10.0);
//date2
dtStudent.Rows.Add(
"2013-01-13", "Drawing", 30.0);
dtStudent.Rows.Add(
"2013-01-13", "Music", 11.0);
//date3
dtStudent.Rows.Add(
"2013-01-14", "Drawing", 28.0);
dtStudent.Rows.Add(
"2013-01-11", "Dance", 40.0);
i need to display the chart as match as the attachment file Bar chart.
if any one help me with example will be very helpfull for me.
Thanks in advance..