Page 1 of 1
Sidebrush on Isosurface series
Posted: Mon Sep 26, 2011 2:55 am
by 15660116
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.
Re: Sidebrush on Isosurface series
Posted: Mon Sep 26, 2011 7:30 am
by narcis
Hi lilo,
You should use BandPen property:
Code: Select all
TChart1.Series(0).asIsoSurface.BandPen.Color = vbRed
Re: Sidebrush on Isosurface series
Posted: Mon Sep 26, 2011 9:35 am
by narcis
Hi lilo,
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
Re: Sidebrush on Isosurface series
Posted: Mon Sep 26, 2011 10:06 am
by 15660116
The sidebrush is still not displaying correctly. It is displaying on the back wall where there is no data. See this picture:

- cont2.jpg (169.32 KiB) Viewed 7906 times
The chart should display like this (net Framework Version)

- cont3.jpg (130.76 KiB) Viewed 7899 times
Re: Sidebrush on Isosurface series
Posted: Mon Sep 26, 2011 10:12 am
by narcis
Hi lilo,
Can you please attach a simple example project we can run "as-is" to reproduce the problem here?
Thanks in advance.