Skip to main content
All docs
V21.1

DxChartSeries<T, TArgument, TValue, TAggregate, TModel>.AggregationMethod Property

OBSOLETE

This property is obsoloete now. Use the SummaryMethod property instead

Specifies the method that calculates summaries for points with the same argument value.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v21.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Browsable(false)]
[Obsolete("This property is obsoloete now. Use the SummaryMethod property instead")]
[Parameter]
public Func<IEnumerable<TAggregate>, TAggregate> AggregationMethod { get; set; }

Property Value

Type Description
Func<IEnumerable<TAggregate>, TAggregate>

A method defined by the Func<IEnumerable<T>, T> signature. For example, Sum(IEnumerable<Int32>).

Remarks

This property is obsolete. Use the SummaryMethod instead.

See Also