Skip to main content

DxChartXYSeries<T, TArgument, TValue, TAggregate>.AggregationMethod Property

OBSOLETE

This property is obsolete 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.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
[Obsolete("This property is obsolete now. Use the SummaryMethod property instead")]
[Browsable(false)]
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