Hi,
What I am trying to achieve is to draw a series of lines in real-world coordinates. I have been able to do this in 2D using a line series and adding null points between the line coordinates to break the line series at appropriate points, using 'Add(Double.NaN, Double.NaN, Color.Transparent)'. This also requires lines1.TreatNulls to be set to ...TreatNullsStyle.DoNotPaint.
I would like to do the same thing with 3D coordinates, however I find that the various 3D series do not seem to have the ability to support nulls in this way. That is, they don't have the TreatNulls property, and they don't support Double.NaN or null in the Add(x,y,z,color) methods.
Is there any other way I can make this work?

