Multiple X data on same chart
Added by Thomas Suckow over 1 year ago
It does not appear to be possible to draw multiple curves on a plot with separate X data for each curve.
If this is possible I apologize, if it is not possible what would likely be the best way to "Hack it in" or would it be more worthwhile to begin rewriting the Cartesian Chart from scratch?
Regards,
Thomas
Replies
RE: Multiple X data on same chart - Added by Wim Dumon over 1 year ago
The work-around is to make a model where you put the multiple X data one after the other:
Ax: 0 1 2 4 6 n n n n Ay: 0 1 4 16 36 n n n n Bx: n n n n n 3 4 5 10 By: n n n n n 6 8 10 20
For the locations where there is an 'n', your model should return an empty boost::any object.
Wim.