I want to use asp.net charts totally at code behind. The reason is that i want to have different charts bind dynamically as many as my database have records. Anybody please help...Here is my code:\[code\] Chart Chart1 = new Chart(); string webname = "series1"; Chart1.Series.Add(webname); Chart1.Series[0].ChartType = SeriesChartType.Line; Chart1.Series[0].Points.AddXY("test", 5); Chart1.Series[0].Points.AddXY("test", 2); Chart1.ChartAreas.Add("ChartArea1");\[/code\]