Back to Devexpress

FullStackedBarSeriesView Class

corelibraries-devexpress-dot-xtracharts-9695031c.md

latest6.8 KB
Original Source

FullStackedBarSeriesView Class

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

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
public class FullStackedBarSeriesView :
    StackedBarSeriesView
vb
Public Class FullStackedBarSeriesView
    Inherits StackedBarSeriesView

Remarks

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

The FullStackedBarSeriesView class inherits properties and methods from the base StackedBarSeriesView 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 FullStackedBarSeriesView type, and add this chart to a form at runtime. Before proceeding with this example, create a Windows Forms Application in Visual Studio, and add all required assemblies to the References list of your project.

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

csharp
using DevExpress.XtraCharts;
// ...

private void Form1_Load(object sender, EventArgs e) {
    // Create a new chart.
    ChartControl FullStackedBarChart = new ChartControl();

    // Create two full-stacked bar series.
    Series series1 = new Series("Series 1", ViewType.FullStackedBar);
    Series series2 = new Series("Series 2", ViewType.FullStackedBar);

    // Add points to them.
    series1.Points.Add(new SeriesPoint(1, 10));
    series1.Points.Add(new SeriesPoint(2, 12));
    series1.Points.Add(new SeriesPoint(3, 14));
    series1.Points.Add(new SeriesPoint(4, 17));

    series2.Points.Add(new SeriesPoint(1, 15));
    series2.Points.Add(new SeriesPoint(2, 18));
    series2.Points.Add(new SeriesPoint(3, 25));
    series2.Points.Add(new SeriesPoint(4, 33));

    // Add both series to the chart.
    FullStackedBarChart.Series.AddRange(new Series[] { series1, series2 });

    // Set the numerical argument scale types for the series,
    // as it is qualitative, by default.
    series1.ArgumentScaleType = ScaleType.Numerical;
    series2.ArgumentScaleType = ScaleType.Numerical;

    // Access the view-type-specific options of the series.
    ((FullStackedBarSeriesView)series1.View).BarWidth = 0.4;

    // Access the type-specific options of the diagram.
    ((XYDiagram)FullStackedBarChart.Diagram).EnableAxisXZooming = true;

    // Hide the legend (if necessary).
    FullStackedBarChart.Legend.Visible = false;

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

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

    ' Create two full-stacked bar series.
    Dim series1 As New Series("Series 1", ViewType.FullStackedBar)
    Dim series2 As New Series("Series 2", ViewType.FullStackedBar)

    ' Add points to them.
    series1.Points.Add(New SeriesPoint(1, 10))
    series1.Points.Add(New SeriesPoint(2, 12))
    series1.Points.Add(New SeriesPoint(3, 14))
    series1.Points.Add(New SeriesPoint(4, 17))

    series2.Points.Add(New SeriesPoint(1, 15))
    series2.Points.Add(New SeriesPoint(2, 18))
    series2.Points.Add(New SeriesPoint(3, 25))
    series2.Points.Add(New SeriesPoint(4, 33))

    ' Add both series to the chart.
    FullStackedBarChart.Series.AddRange(New Series() { series1, series2 })

    ' Set the numerical argument scale types for the series,
    ' as it is qualitative, by default.
    series1.ArgumentScaleType = ScaleType.Numerical
    series2.ArgumentScaleType = ScaleType.Numerical

    ' Access the view-type-specific options of the series.
    CType(series1.View, FullStackedBarSeriesView).BarWidth = 0.4

    ' Access the type-specific options of the diagram.
    CType(FullStackedBarChart.Diagram, XYDiagram).EnableAxisXZooming = True

    ' Hide the legend (if necessary).
    FullStackedBarChart.Legend.Visible = False

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

Implements

IXtraSerializable

IXYSeriesView2D

IXtraSupportDeserializeCollectionItem

ISupportTransparency

Inheritance

Object ChartElement SeriesViewBase XYDiagram2DSeriesViewBase XYDiagramSeriesViewBase SeriesViewColorEachSupportBase BarSeriesView StackedBarSeriesView FullStackedBarSeriesView SideBySideFullStackedBarSeriesView

See Also

FullStackedBarSeriesView Members

StackedBarSeriesView

DevExpress.XtraCharts Namespace