Skip to main content

DxChartCommonSeries<T, TGroup, TValue, TArgument>.AggregationMethod Property

OBSOLETE

This property is obsolete now. Use the SummaryMethod instead.

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Description
Func<IEnumerable<TValue>, TValue>

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