Posted 2 December 2024, 4:16 pm EST
Hi,
Is it possible to bind a series to an array element instead of specific property name?
Assume:
DataPoint {
int X;
List<double> Values; // each entry is a different series
}
Is it possible to bind the series to a specific array index?
Currently I am creating a list of DataPoint for each series. Is it better to create a single list of point, where each point can have an array of values, one for each series?
Thanks,
Hai