Page 1 of 1

Proprieties ?

Posted: Wed Dec 14, 2011 4:13 pm
by 16658610
Hi,

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

Image

Can you help us ?
Thanks

Re: Proprieties ?

Posted: Thu Dec 15, 2011 11:56 am
by yeray
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 4927 times