[]
Specifies how data should be aggregated for charting.
public enum Aggregate
Name | Description |
---|---|
Average | Average all values for each point. |
Count | Number of values for each point. |
Maximum | Get the maximum value for each point. |
Minimum | Get the minimum value for each point. |
None | Raw values (no aggregation). |
StandardDeviation | Gets the standard deviation of the values for each point (sample). |
StandardDeviationPop | Gets the standard deviation of the values for each point (population). |
Sum | Sum all values for each point. |
Variance | Gets the variance of the values for each point (sample). |
VariancePop | Gets the variance of the values for each point (population). |