Back to Devexpress

StackedArea3DSeriesView Class

corelibraries-devexpress-dot-xtracharts-dot-stackedarea3dseriesview.md

latest6.6 KB
Original Source

StackedArea3DSeriesView Class

Represents a series view of the 3D Stacked Area type.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
public class StackedArea3DSeriesView :
    Area3DSeriesView,
    IStackedView
vb
Public Class StackedArea3DSeriesView
    Inherits Area3DSeriesView
    Implements IStackedView

Remarks

The StackedArea3DSeriesView class provides functionality of a series view of the Stacked Area 3D type within a chart control. At the same time, the StackedArea3DSeriesView class serves as a base for the FullStackedArea3DSeriesView class.

Note that a particular view type can be defined for a series via its SeriesBase.View property.

For more information on series views of the Stacked Area 3D type, please see the Stacked Area Chart topic.

Example

The following example demonstrates how to create a ChartControl with two series of the StackedArea3DSeriesView type, set their general properties, and add this chart to a form at runtime. Before proceeding with this example, first create a Windows Forms Application in Visual Studio, and include all necessary assemblies to the References list of your project.

Then, add the following code to the Form.Load event handler.

csharp
using System;
using System.Windows.Forms;
using DevExpress.XtraCharts;
// ...

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.Visible = false;

    // Add the chart to the form.
    stackedArea3DChart.Dock = DockStyle.Fill;
    this.Controls.Add(stackedArea3DChart);
}
vb
Imports System
Imports System.Windows.Forms
Imports DevExpress.XtraCharts
' ...

Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
    ' Create a new chart.
    Dim stackedArea3DChart As New ChartControl()

    ' Create two series of the StackedArea3D view type.
    Dim series1 As New Series("Series 1", ViewType.StackedArea3D)
    Dim series2 As 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.
    CType(series1.View, StackedArea3DSeriesView).AreaWidth = 4
    CType(series2.View, StackedArea3DSeriesView).AreaWidth = 3

    ' Access the diagram's options.
    CType(stackedArea3DChart.Diagram, XYDiagram3D).ZoomPercent = 110

    ' Add a title to the chart and hide the legend.
    Dim chartTitle1 As New ChartTitle()
    chartTitle1.Text = "3D Stacked Area Chart"
    stackedArea3DChart.Titles.Add(chartTitle1)
    stackedArea3DChart.Legend.Visible = False

    ' Add the chart to the form.
    stackedArea3DChart.Dock = DockStyle.Fill
    Me.Controls.Add(stackedArea3DChart)
End Sub

Implements

IXtraSerializable

IXtraSupportDeserializeCollectionItem

ISupportTransparency

Inheritance

Object ChartElement SeriesViewBase XYDiagram3DSeriesViewBase Line3DSeriesView Area3DSeriesView StackedArea3DSeriesView FullStackedArea3DSeriesView

StackedSplineArea3DSeriesView

FullStackedSplineArea3DSeriesView

See Also

StackedArea3DSeriesView Members

DevExpress.XtraCharts Namespace