Back to Devexpress

FullStackedSplineAreaSeriesView Class

corelibraries-devexpress-dot-xtracharts-89b85bce.md

latest7.8 KB
Original Source

FullStackedSplineAreaSeriesView Class

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

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
public class FullStackedSplineAreaSeriesView :
    FullStackedAreaSeriesView,
    ISplineSeriesView,
    ISplineView,
    IStackedSplineView,
    IStackedView
vb
Public Class FullStackedSplineAreaSeriesView
    Inherits FullStackedAreaSeriesView
    Implements ISplineSeriesView,
               ISplineView,
               IStackedSplineView,
               IStackedView

Remarks

The FullStackedSplineAreaSeriesView class provides the functionality of a series view of the Full-Stacked Spline Area type within a chart control.

In addition to the common view settings inherited from the base FullStackedAreaSeriesView class, the FullStackedSplineAreaSeriesView class declares the spline type specific settings, which allow you to define the style of the spline curve (FullStackedSplineAreaSeriesView.LineTensionPercent).

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 Spline Area type, refer to the Full-Stacked Spline Area Chart topic.

Example

The following example demonstrates how to create a ChartControl with a series of the FullStackedSplineAreaSeriesView type, set its 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 add all required 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 an empty chart.
    ChartControl fullStackedSplineAreaChart = new ChartControl();

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

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

    // Adjust the view-type-specific options of the series.
    ((FullStackedSplineAreaSeriesView)series1.View).LineTensionPercent = 80;
    ((FullStackedSplineAreaSeriesView)series2.View).Transparency = 80;

    // Access the diagram's options.
    ((XYDiagram)fullStackedSplineAreaChart.Diagram).Rotated = true;

    // Add a title to the chart and hide the legend.
    ChartTitle chartTitle1 = new ChartTitle();
    chartTitle1.Text = "Full Stacked Spline Area Chart";
    fullStackedSplineAreaChart.Titles.Add(chartTitle1);
    fullStackedSplineAreaChart.Legend.Visible = false;

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

    ' Create two series of the FullStackedSplineArea view type.
    Dim series1 As New Series("Series 1", ViewType.FullStackedSplineArea)
    Dim series2 As New Series("Series 2", ViewType.FullStackedSplineArea)

    ' 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.
    fullStackedSplineAreaChart.Series.AddRange(New Series() { series1, series2})

    ' Adjust the view-type-specific options of the series.
    CType(series1.View, FullStackedSplineAreaSeriesView).LineTensionPercent = 80
    CType(series2.View, FullStackedSplineAreaSeriesView).Transparency = 80

    ' Access the diagram's options.
    CType(fullStackedSplineAreaChart.Diagram, XYDiagram).Rotated = True

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

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

Implements

IXtraSerializable

IXYSeriesView2D

IXtraSupportDeserializeCollectionItem

ISupportTransparency

Inheritance

Show 14 items

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

See Also

FullStackedSplineAreaSeriesView Members

DevExpress.XtraCharts Namespace