Does anyone know how to bind two arrays (x and y datapoints) to form a line chart using the asp.net chart toolkit?
A:
Figured it out. Need to for loop the datapoints and use:
Chart.Series["ChartName"].Points.AddXY(x[i], y[i])
cfarm54
2010-08-23 08:18:44