Skip to main content
All docs
V26.1
  • 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.v26.1.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