The Radar graphs default is slightly changed in Vb.Net.
I.e. is each graph filled. And thats not so nice for our purpose.
I can get rid the Fill by using the editor:
Series - choose one - Pattern - unclick Visible in the Hatch brush editor (the Solid tab).
How do I do this by using VB.Net code (these graphs are built dynamically).
Also, if filled: How to set the transparancy pct from VB?
In V5 there is a couple of properties:
- Circled (TC1.Series(lIndex).asRadar.Circled = True)
- CircleLabels (TC1.Series(lIndex).asRadar.CircleLabels.Visible = True)
How are these properties set now?
regards Oystein
Radar graph
Hi,
Radar1.Brush.Visible = False
Radar1.Brush.Transparency = 80
You can do :I can get rid the Fill by using the editor:
Series - choose one - Pattern - unclick Visible in the Hatch brush editor (the Solid tab).
How do I do this by using VB.Net code (these graphs are built dynamically).
Radar1.Brush.Visible = False
With :Also, if filled: How to set the transparancy pct from VB?
Radar1.Brush.Transparency = 80
You can set them :In V5 there is a couple of properties:
- Circled (TC1.Series(lIndex).asRadar.Circled = True)
- CircleLabels (TC1.Series(lIndex).asRadar.CircleLabels.Visible = True)
Code: Select all
Dim Radar1 As New Steema.TeeChart.Styles.Radar
TChart1.Series.Add(Radar1)
Radar1.FillSampleValues()
Radar1.Brush.Visible = False
Radar1.Circled = True
Radar1.CircleLabels = True
Pep Jorge
http://support.steema.com
http://support.steema.com
Radar
Hi, thank you, it seems to work OK.
The reason that we didn't get the Brush property, is as follows:
We have a combo where the users may select some graphtypes (web).
We therefore define more globally Styles:
dim oStyle1 as Steema.TeeChart.Styles.Series
dim oStyle2....
Then we assign the graphtype (using a Function, but related to Radar, the result is as this):
oStyle1 = Steema.TeeChart.Styles.Radar
etc
But then, OStyle is a Series - and the Brush property was never found.
We will find another way to handle this.
We changed the function assigning the Style to the .Series and assigned these specifically to the Radar style, before returning. Then it is OK.
Thanks again.
The reason that we didn't get the Brush property, is as follows:
We have a combo where the users may select some graphtypes (web).
We therefore define more globally Styles:
dim oStyle1 as Steema.TeeChart.Styles.Series
dim oStyle2....
Then we assign the graphtype (using a Function, but related to Radar, the result is as this):
oStyle1 = Steema.TeeChart.Styles.Radar
etc
But then, OStyle is a Series - and the Brush property was never found.
We will find another way to handle this.
We changed the function assigning the Style to the .Series and assigned these specifically to the Radar style, before returning. Then it is OK.
Thanks again.