Proprieties ?

TeeChart for ActiveX, COM and ASP
Post Reply
Laurent75
Newbie
Newbie
Posts: 2
Joined: Mon Feb 21, 2011 12:00 am

Proprieties ?

Post by Laurent75 » Wed Dec 14, 2011 4:13 pm

Hi,

We don't find the detailed options to draw this graphic with our TeeChart v2011 ActiveX

Image

Can you help us ?
Thanks

Yeray
Site Admin
Site Admin
Posts: 9587
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Proprieties ?

Post by Yeray » Thu Dec 15, 2011 11:56 am

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.

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
Pie.png
Pie.png (50.05 KiB) Viewed 4855 times
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply