Hi,
I have made a graph and I want to plot multiple different types of data. Right now, i have a custom point class, let's call it CustomClass and I am converting everything to the CustomClass before it is plotted, but it would be faster to directly plot some data.
ie, I am given some data:
double[] firstPlot;
double[] secondPlot;
List<CustomClass> thirdPlot;
Right now, I loop through firstPlot and secondPlot and convert each of them into a List<CustomClass>. (I also want to add an arbitrary amount of double[] arrays) Then I eventually plot List<List<CustomClass>> by binding it to the datasource. (This part is working but the looping takes too long)
Is there some sort of collection where I can place multiple different types of data and plot that?
Thanks,
Kelly