Posted: Thu Dec 18, 2003 1:39 pm
Hello,
The Charting of the data is straightforward provided you have codeable access to the data tables you included in your post.
Assuming the data to form part of an array:
- the X data is the first column
- The First LineSeries is Type A (2nd column)
- The 2nd LineSeries is Type B (3rd column)
....etc.
As you step the arrays you simply take the column entry and add it, with the X value to the applicable LineSeries.
eg.
For X = 0 To 9
For YY = 1 To 4
TChart1.Series(YY).AddXY X, TheArray(X, YY), "", clTeeColor
Next YY
Next X
Regards,
Marc Meumann
Steema Support
The Charting of the data is straightforward provided you have codeable access to the data tables you included in your post.
Assuming the data to form part of an array:
- the X data is the first column
- The First LineSeries is Type A (2nd column)
- The 2nd LineSeries is Type B (3rd column)
....etc.
As you step the arrays you simply take the column entry and add it, with the X value to the applicable LineSeries.
eg.
For X = 0 To 9
For YY = 1 To 4
TChart1.Series(YY).AddXY X, TheArray(X, YY), "", clTeeColor
Next YY
Next X
Regards,
Marc Meumann
Steema Support