Hi,
We don't find the detailed options to draw this graphic with our TeeChart v2011 ActiveX
Can you help us ?
Thanks
Proprieties ?
Re: Proprieties ?
Hi,
Take a look at this thread:
http://www.teechart.net/support/viewtop ... ork#p45039
And here you have a chart made with the actual ActiveX version, trying to simulate the chart you've mentioned.
Take a look at this thread:
http://www.teechart.net/support/viewtop ... ork#p45039
And here you have a chart made with the actual ActiveX version, trying to simulate the chart you've mentioned.
Code: Select all
Private Sub Form_Load()
With TChart1
.Aspect.GDIPlus.Active = True
.Aspect.Chart3DPercent = 20
.Legend.Visible = False
With .Panel.Gradient
.Visible = True
.StartColor = RGB(255, 170, 128)
.EndColor = RGB(30, 58, 68)
End With
.AddSeries scPie
With .Series(0)
.FillSampleValues
With .asPie
.Shadow.Visible = False
.ExplodeBiggest = 20
.BevelPercent = 20
.EdgeStyle = edCurved
End With
End With
End With
End Sub
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |