Specifies how data should be aggregated for charting.

Namespace:  C1.Phone.Chart
Assembly:  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 nameValueDescription
None0 Raw values (no aggregation).
Sum1 Sum all values for each point.
Count2 Number of values for each point.
Average3 Average all values for each point.
Minimum4 Get the minimum value for each point.
Maximum5 Get the maximum value for each point.
Variance6 Gets the variance of the values for each point (sample).
VariancePop7 Gets the variance of the values for each point (population).
StandardDeviation8 Gets the standard deviation of the values for each point (sample).
StandardDeviationPop9 Gets the standard deviation of the values for each point (population).

See Also