Back to Devexpress

FullStackedAreaSeriesView Class

corelibraries-devexpress-dot-xtracharts-620ae497.md

latest7.9 KB
Original Source

FullStackedAreaSeriesView Class

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

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
public class FullStackedAreaSeriesView :
    StackedAreaSeriesView
vb
Public Class FullStackedAreaSeriesView
    Inherits StackedAreaSeriesView

Remarks

The FullStackedAreaSeriesView class provides the series view functionality of the full stacked area type within a chart control.

The FullStackedAreaSeriesView class inherits properties and methods from the base StackedAreaSeriesView class. The StackedAreaSeriesView.MarkerOptions and StackedAreaSeriesView.ColorEach properties are meaningless for this view type due to the specific appearance of the full stacked area. They are hidden and always return: MarkerOptions - null , ColorEach - false. The FullStackedAreaSeriesView.Border property for the full stacked area type is also inapplicable. So, it is hidden and always returns null.

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 full stacked area type please see the Full-Stacked Area Chart topic.

Example

The following example demonstrates how to create a ChartControl with two series of the FullStackedAreaSeriesView 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 FullStackedAreaChart = new ChartControl();

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

    // 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.
    FullStackedAreaChart.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.
    ((FullStackedAreaSeriesView)series1.View).Transparency = 50;
    ((FullStackedAreaSeriesView)series2.View).Transparency = 50;

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

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

    // Add the chart to the form.
    FullStackedAreaChart.Dock = DockStyle.Fill;
    this.Controls.Add(FullStackedAreaChart);
}
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 FullStackedAreaChart As New ChartControl()

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

    ' 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.
    FullStackedAreaChart.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, FullStackedAreaSeriesView).Transparency = 50
    CType(series2.View, FullStackedAreaSeriesView).Transparency = 50

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

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

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

Implements

IXtraSerializable

IXYSeriesView2D

IXtraSupportDeserializeCollectionItem

ISupportTransparency

Inheritance

Show 15 items

Object ChartElement SeriesViewBase XYDiagram2DSeriesViewBase XYDiagramSeriesViewBase SeriesViewColorEachSupportBase PointSeriesViewBase PointSeriesView LineSeriesView AreaSeriesViewBase AreaSeriesView StackedAreaSeriesView FullStackedAreaSeriesView FullStackedSplineAreaSeriesView

FullStackedStepAreaSeriesView

See Also

FullStackedAreaSeriesView Members

DevExpress.XtraCharts Namespace