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

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.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[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