ChartNavigatorSeriesItemProps
Interface
Represents the props of the Kendo UI for Vue ChartNavigatorSeriesItem component.
Definition
Package:@progress/kendo-vue-charts
Properties
aggregate?
any
The aggregate function for the date series (see example). The function is used when a category (year, month, or other) contains two or more points. The Chart displays the return value of the function instead of the individual points.
The supported values are:
"avg"—The average of all values for the date period."count"—The number of values for the date period."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. Defaults to0if no data points are defined."sumOrNull"—The sum of all values for the date period. Defaults tonullif no data points are defined."first"