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