3d lines in 3D serie

TeeChart for ActiveX, COM and ASP
Post Reply
ACC
Newbie
Newbie
Posts: 12
Joined: Fri Oct 21, 2005 4:00 am

3d lines in 3D serie

Post by ACC » Mon Jan 30, 2006 8:03 pm

Hello,
I'm using TeeChart Pro 7 AX, and I'm drawing a 3D serie (XYZ), the serie draws OK, but I want to have 3d lines, like if it were pipes (In fact, I'm drawing a pipe representation).

Apparently the "depth" attribute of the serie works only in normal (i.e. 2D series).

Is possible to draw 3D lines y 3DSeries? Or this is possible only in 2D series?

Best regards,

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jan 31, 2006 11:03 am

Hi ACC,

You could try using Point3D series making their pointer invisible and changing the line pen width as shown here:

Code: Select all

Private Sub Form_Load()    
    TChart1.Series(0).FillSampleValues 20
    
    With TChart1.Series(0).asPoint3D
        .Pointer.Visible = False
        .LinePen.Width = 3
    End With
End Sub
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

ACC
Newbie
Newbie
Posts: 12
Joined: Fri Oct 21, 2005 4:00 am

Almost, but sufficient

Post by ACC » Tue Jan 31, 2006 1:23 pm

Hi Narcís, it gives a more voluminous look to the line, even not being a true 3d line.

By now I will increase the width of the line.

But just as a "wish feature" I've sent an attached picture showing the desired appearance I want to the steema.public.attachments newsgroup under the subject "3d lines in 3d plots".

Regards

[/img]

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Feb 01, 2006 1:23 pm

Thanks ACC,

I've added your request to our wish-list to be considered for future releases.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

ACC
Newbie
Newbie
Posts: 12
Joined: Fri Oct 21, 2005 4:00 am

Thanks.

Post by ACC » Wed Feb 01, 2006 1:43 pm

Thanks Narcís.

Does exists an estimated product roadmap to know which features will be included in future versions?.

Regards.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Feb 01, 2006 1:58 pm

Hi ACC,

Not for now but we are working on arranging it for TeeChart Pro v8.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply