Is it possible to display the sidebrush on the isosurface series (in color)
In dot net, I just set Isosurface.sidebrush.visible=True. I cannot find a similar property in activex version.
Sidebrush on Isosurface series
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Sidebrush on Isosurface series
Hi lilo,
You should use BandPen property:
You should use BandPen property:
Code: Select all
TChart1.Series(0).asIsoSurface.BandPen.Color = vbRed
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:
Re: Sidebrush on Isosurface series
Hi lilo,
Sorry, my bad, I misunderstood your question, the ActiveX of .NET's SideBrush.Visible = true equivalent is:
Sorry, my bad, I misunderstood your question, the ActiveX of .NET's SideBrush.Visible = true equivalent is:
Code: Select all
TChart1.Series(0).asIsoSurface.SideBrush.Style = bsSolid
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 |
Re: Sidebrush on Isosurface series
The sidebrush is still not displaying correctly. It is displaying on the back wall where there is no data. See this picture:
The chart should display like this (net Framework Version)
The chart should display like this (net Framework Version)
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Sidebrush on Isosurface series
Hi lilo,
Can you please attach a simple example project we can run "as-is" to reproduce the problem here?
Thanks in advance.
Can you please attach a simple example project we can run "as-is" to reproduce the problem here?
Thanks in advance.
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 |