Specifies how data should be aggregated for charting.
Namespace:
C1.Phone.ChartAssembly: C1.Phone.Chart (in C1.Phone.Chart.dll)
Syntax
| C# |
|---|
public enum Aggregate |
| Visual Basic |
|---|
Public Enumeration Aggregate |
| XAML Attribute Usage |
|---|
<object property="enumerationMemberName" .../> |
Members
| Member name | Value | Description | |
|---|---|---|---|
| None | 0 | Raw values (no aggregation). | |
| Sum | 1 | Sum all values for each point. | |
| Count | 2 | Number of values for each point. | |
| Average | 3 | Average all values for each point. | |
| Minimum | 4 | Get the minimum value for each point. | |
| Maximum | 5 | Get the maximum value for each point. | |
| Variance | 6 | Gets the variance of the values for each point (sample). | |
| VariancePop | 7 | Gets the variance of the values for each point (population). | |
| StandardDeviation | 8 | Gets the standard deviation of the values for each point (sample). | |
| StandardDeviationPop | 9 | Gets the standard deviation of the values for each point (population). |