views:

12

answers:

1

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