Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxChartFullStackedSplineSeries<T, TArgument, TValue> Class

Defines a full stacked spline area series.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
public class DxChartFullStackedSplineSeries<T, TArgument, TValue> :
    DxChartLineSeriesBase<T, TArgument, TValue>

#Type Parameters

Name Description
T

The type of data.

TArgument

The type of series arguments.

TValue

The type of series values.

#Remarks

The full stacked spline series displays the percentage value of multiple spline series for each argument.

Use the chart’s DevExpress.Blazor.DxChart1.Data property to specify an @System.Collections.Generic.IEnumerable1 data source, and the ArgumentField and ValueField properties to specify data source fields that contain arguments and values for chart points. For a sample data source, refer to our GitHub repository.

<DxChart Data="@SalesData">
    <DxChartFullStackedSplineSeries Name="2017" 
                                    Filter="@((SaleInfo s) => s.Date.Year == 2017)"
                                    ArgumentField="@(s => s.City)" 
                                    ValueField="@(s => s.Amount)"
                                    SummaryMethod="Enumerable.Sum" />
    <DxChartFullStackedSplineSeries Name="2018" 
                                    Filter="@((SaleInfo s) => s.Date.Year == 2018)"
                                    ArgumentField="@(s => s.City)" 
                                    ValueField="@(s => s.Amount)"
                                    SummaryMethod="Enumerable.Sum" />
    <DxChartFullStackedSplineSeries Name="2019" 
                                    Filter="@((SaleInfo s) => s.Date.Year == 2019)"
                                    ArgumentField="@(s => s.City)" 
                                    ValueField="@(s => s.Amount)"
                                    SummaryMethod="Enumerable.Sum" />
    <DxChartLegend Position="RelativePosition.Outside" HorizontalAlignment="HorizontalAlignment.Right" />
</DxChart>

@code {

Chart Full Stacked Spline Series

Run Demo: Charts - Line Series

#Inheritance

Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.Internal.IXYChartSeriesModel>
DxComplexSettingsComponent<DxChartSeries, DevExpress.Blazor.Internal.IXYChartSeriesModel>
DxChartSeries
DxChartXYSeries<T, TArgument, TValue, TValue>
DxChartLineSeriesBase<T, TArgument, TValue>
DxChartFullStackedSplineSeries<T, TArgument, TValue>
See Also