EnumChartSeriesAggregate
Enum
Specifies the preferred series aggregate.
Definition
Namespace:Telerik.Blazor
Assembly:Telerik.Blazor.dll
Syntax:
cs-api-definition
[JsonConverter(typeof(ChartJsonStringEnumConverter))]
public enum ChartSeriesAggregate
Fields
Avg
The average of all values for the date period.
Count
The number of values for the date period.
Declaration
cs-api-definition
[EnumMember(Value = "count")]
Count = 1
Field Value
First
The first of all values for the date period.
Declaration
cs-api-definition
[EnumMember(Value = "first")]
First = 2
Field Value
Max
The highest value for the date period.
Min
The lowest value for the date period.
Sum
The sum of all values for the date period.
SumOrNull
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).
Declaration
cs-api-definition
[EnumMember(Value = "sumOrNull")]
SumOrNull = 6
Field Value