I have an existing DataGridView that is filled with data. I have a column in the DataGridView called "SignalStrength" and I wish to plot that data on a Chart control.
I figure the easiest way to do this is simply to bind the data but I cannot figure out the correct syntax. I want to do something like this:
Chart1.Series[0].Points.DataBindY(DataGridView1, "SignalStrength");
This does not compile because I'm not passing the correct type to the DataBindY function. It wants an IEnumerable type. What is the correct way to do this? I'd hate to have to iterate over my entire DataGridView to add the points.
DataGridView1.Rowswork? – lc. Aug 14 '12 at 13:13