Jump to content
Software FX Community

Sample Pie chart Example


darkwing

Recommended Posts

You can create a Pie chart from Visual Studio's designer without writing any code, simply select it from the Wizard. You can also use the wizard to bind your chart to a datasource.

 If you want to do it by code, simply set:

chart.Gallery = Gallery.Pie

chart.Data.Series = 1 ' 1 Pie

chart.Data.Points = 4 ' 4 slices

chart.Data(0) = 10

chart.Data(1) = 20

chart.Data(2) = 30

chart.Data(3) = 40

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...