darkwing Posted October 2, 2007 Report Share Posted October 2, 2007 Help, can anyone provide a sample pie chart example to a novice ? In VB.net. Quote Link to comment Share on other sites More sharing options...
Frank Posted October 2, 2007 Report Share Posted October 2, 2007 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.