Hi Dan,
You can add several bindings at a time, for example:
nChartControl1.DataBindingManager.AddBinding(0, 1, "Values", TableIVT.rowList, "im");
nChartControl1.DataBindingManager.AddBinding(0, 1, "XValues", TableIVT.rowList, "vf");
You also have to set the UseXValues property of the series to true.
You can take a look at the following example in our Windows Forms demo application:
All Examples > Data Manipulation > Data Binding > Binding to IBindingList
Best Regards,
Milen