Specifies the preferred series aggregate.
Definition
Namespace:Telerik.Blazor
Assembly:Telerik.Blazor.dll
Syntax:
C#
[JsonConverter(typeof(ChartJsonStringEnumConverter))]
public enum ChartSeriesAggregate
Fields
The average of all values for the date period.
C#
[EnumMember(Value = "avg")]
Avg = 0
The number of values for the date period.
C#
[EnumMember(Value = "count")]
Count = 1
The first of all values for the date period.
C#
[EnumMember(Value = "first")]
First = 2
The highest value for the date period.
C#
[EnumMember(Value = "max")]
Max = 3
The lowest value for the date period.
C#
[EnumMember(Value = "min")]
Min = 4
The sum of all values for the date period.
C#
[EnumMember(Value = "sum")]
Sum = 5
The sum of all values for the date period. If there are not data for the current period of time the aggregate will return 'null'(instead of 'zero' for the sum aggregate).
C#
[EnumMember(Value = "sumOrNull")]
SumOrNull = 6