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
Colorline on the depth axix is drawn on the left axis
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi --
The Axis Tools are not presently designed to work with the Depth Axis. I will add the idea to the wishlist.
These things are much easier to figure out when you have access to the source codeHaven't got a clue why? Do you?
The Axis Tools are not presently designed to work with the Depth Axis. I will add the idea to the wishlist.
Thank you!
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi IHWB,
I'm afraid this feature hasn't been implemented yet.
I'm afraid this feature hasn't been implemented yet.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi IHWB,
I can't give you an estimate date at the moment. The feature is not yet supported in v3. I recommend you to be aware at this forum or subscribe to our RSS feed for new release announcements and what's being implemented on them.
I can't give you an estimate date at the moment. The feature is not yet supported in v3. I recommend you to be aware at this forum or subscribe to our RSS feed for new release announcements and what's being implemented on them.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |