Hello,
Is there an example of how to populate a pie chart using visual basic code?
Thanks!
Pie Chart...Is there an example of how to populate?
Hi,
a simple example could be :
a simple example could be :
Code: Select all
Private Sub Form_Load()
With TChart1
.AddSeries scPie
.Series(0).Add 10, "label1", clTeeColor
.Series(0).Add 30, "label2", clTeeColor
.Series(0).Add 50, "label3", clTeeColor
.Series(0).Add 5, "label4", clTeeColor
.Series(0).Add 5, "label5", clTeeColor
.Series(0).asPie.Circled = True
End With
End Sub
Pep Jorge
http://support.steema.com
http://support.steema.com