Example E1028
Visible to All Users

How to create a 3D Pie chart

Files to look at:

The following example demonstrates how to create a 3D Pie chart at runtime.

Note that this series view type is associated with the Simple Diagram 3D type, and you should cast your diagram object to this type, in order to access its specific options.

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

3DPieChart/Form1.cs(vb)
C#
using System; using System.Windows.Forms; using DevExpress.XtraCharts; // ... namespace _DPieChart { public partial class Form1: Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { // Create an empty chart. ChartControl PieChart3D = new ChartControl(); // Create a pie series. Series series1 = new Series("Pie Series 1", ViewType.Pie3D); // Populate the series with points. series1.Points.Add(new SeriesPoint("Russia", 17.0752)); series1.Points.Add(new SeriesPoint("Canada", 9.98467)); series1.Points.Add(new SeriesPoint("USA", 9.63142)); series1.Points.Add(new SeriesPoint("China", 9.59696)); series1.Points.Add(new SeriesPoint("Brazil", 8.511965)); series1.Points.Add(new SeriesPoint("Australia", 7.68685)); series1.Points.Add(new SeriesPoint("India", 3.28759)); series1.Points.Add(new SeriesPoint("Others", 81.2)); // Add the series to the chart. PieChart3D.Series.Add(series1); // Adjust the value numeric options of the series. series1.Label.TextPattern = "{VP:p0}"; // Adjust the view-type-specific options of the series. ((Pie3DSeriesView)series1.View).Depth = 30; ((Pie3DSeriesView)series1.View).ExplodedPoints.Add(series1.Points[0]); ((Pie3DSeriesView)series1.View).ExplodedDistancePercentage = 30; // Access the diagram's options. ((SimpleDiagram3D)PieChart3D.Diagram).RotationType = RotationType.UseAngles; ((SimpleDiagram3D)PieChart3D.Diagram).RotationAngleX = -35; // Add a title to the chart and hide the legend. ChartTitle chartTitle1 = new ChartTitle(); chartTitle1.Text = "3D Pie Chart"; PieChart3D.Titles.Add(chartTitle1); PieChart3D.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False; // Add the chart to the form. PieChart3D.Dock = DockStyle.Fill; this.Controls.Add(PieChart3D); } } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.