Colorline on the depth axix is drawn on the left axis
Posted: Tue Jun 08, 2004 12:46 pm
Hi, I have a plot with a points3d series added to it. I need to draw a colorline on each axis (left, bottom, depth). The left and bottom line are drawn correctly when I use the code:
scorePlot.Tools.Add(yLine);
yLine.Value = 0;
yLine.Axis = scorePlot.Axes.Left;
scorePlot.Tools.Add(xLine);
xLine.Value = 0;
xLine.Axis = scorePlot.Axes.Bottom;
However, when I try to set the depthLine's axis to the depth axe with the code:
scorePlot.Tools.Add(zLine);
zLine.Value = 0;
zLine.Axis = scorePlot.Axes.Depth;
the line is drawn on the left axe (could be the right too...) , so I end up with two horizontal color lines and no one on the depth axis.
Haven't got a clue why? Do you?
Best regards
Elisabeth
scorePlot.Tools.Add(yLine);
yLine.Value = 0;
yLine.Axis = scorePlot.Axes.Left;
scorePlot.Tools.Add(xLine);
xLine.Value = 0;
xLine.Axis = scorePlot.Axes.Bottom;
However, when I try to set the depthLine's axis to the depth axe with the code:
scorePlot.Tools.Add(zLine);
zLine.Value = 0;
zLine.Axis = scorePlot.Axes.Depth;
the line is drawn on the left axe (could be the right too...) , so I end up with two horizontal color lines and no one on the depth axis.
Haven't got a clue why? Do you?
Best regards
Elisabeth