Skip to main content
A newer version of this page is available. .

FullStackedBar3DSeriesView Class

Represents a series view of the 3D Full-Stacked Bar type.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v20.2.dll

NuGet Packages: DevExpress.Charts, DevExpress.WindowsDesktop.Charts

Declaration

public class FullStackedBar3DSeriesView :
    StackedBar3DSeriesView

Remarks

The FullStackedBar3DSeriesView class provides the functionality of a series view of the 3D full-stacked bar type within a chart control.

The FullStackedBar3DSeriesView class inherits properties and methods from the base StackedBar3DSeriesView class which defines the common settings of the stacked bar series views.

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 bar type, please see the Full-Stacked Bar Chart topic.

Example

The following example demonstrates how to create a ChartControl with two series of the FullStackedBar3DSeriesView 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.

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

private void Form1_Load(object sender, EventArgs e) {
    // Create an empty chart.
    ChartControl fullStackedBar3DChart = new ChartControl();

    // Create two series of the FullStackedBar3D view type.
    Series series1 = new Series("Series 1", ViewType.FullStackedBar3D);
    Series series2 = new Series("Series 2", ViewType.FullStackedBar3D);

    // 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.
    fullStackedBar3DChart.Series.AddRange(new Series[] {
        series1,
        series2});

    // Adjust the view-type-specific options of the second series.
    FullStackedBar3DSeriesView myView = (FullStackedBar3DSeriesView)series2.View;
    myView.Transparency = 160;
    myView.Model = Bar3DModel.Cylinder;
    myView.ShowFacet = false;

    // Access the diagram's options.
    ((XYDiagram3D)fullStackedBar3DChart.Diagram).ZoomPercent = 110;

    // Add a title to the chart and hide the legend.
    ChartTitle chartTitle1 = new ChartTitle();
    chartTitle1.Text = "3D Full Stacked Bar Chart";
    fullStackedBar3DChart.Titles.Add(chartTitle1);
    fullStackedBar3DChart.Legend.Visible = false;

    // Add the chart to the form.
    fullStackedBar3DChart.Dock = DockStyle.Fill;
    this.Controls.Add(fullStackedBar3DChart);
}
See Also