Example E1037
Visible to All Users

Chart for WinForms - How to Create a 3D Stacked Area chart

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

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

Files to Review

Documentation

Does this example address your development requirements/objectives?

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

Example Code

Series_3DStackedAreaChart/Form1.cs(vb)
C#
using System; using System.Windows.Forms; using DevExpress.XtraCharts; // ... namespace Series_3DStackedAreaChart { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { // Create a new chart. ChartControl stackedArea3DChart = new ChartControl(); // Create two series of the StackedArea3D view type. Series series1 = new Series("Series 1", ViewType.StackedArea3D); Series series2 = new Series("Series 2", ViewType.StackedArea3D); // Populate both series with points. series1.Points.Add(new SeriesPoint("A", 80)); series1.Points.Add(new SeriesPoint("B", 20)); series1.Points.Add(new SeriesPoint("C", 50)); series1.Points.Add(new SeriesPoint("D", 30)); series2.Points.Add(new SeriesPoint("A", 40)); series2.Points.Add(new SeriesPoint("B", 60)); series2.Points.Add(new SeriesPoint("C", 20)); series2.Points.Add(new SeriesPoint("D", 80)); // Add the series to the chart. stackedArea3DChart.Series.AddRange(new Series[] { series1, series2}); // Adjust the view-type-specific options of the series. ((StackedArea3DSeriesView)series1.View).AreaWidth = 4; ((StackedArea3DSeriesView)series2.View).AreaWidth = 3; // Access the diagram's options. ((XYDiagram3D)stackedArea3DChart.Diagram).ZoomPercent = 110; // Add a title to the chart and hide the legend. ChartTitle chartTitle1 = new ChartTitle(); chartTitle1.Text = "3D Stacked Area Chart"; stackedArea3DChart.Titles.Add(chartTitle1); stackedArea3DChart.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False; // Add the chart to the form. stackedArea3DChart.Dock = DockStyle.Fill; this.Controls.Add(stackedArea3DChart); } } }

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.