Specifies how data should be aggregated for charting.
Namespace:
C1.Silverlight.ChartAssembly: C1.Silverlight.Chart (in C1.Silverlight.Chart.dll)
Syntax
C# |
---|
public enum Aggregate |
Visual Basic |
---|
Public Enumeration Aggregate |
Members
Member name | Description | |
---|---|---|
None | Raw values (no aggregation). | |
Sum | Sum all values for each point. | |
Count | Number of values for each point. | |
Average | Average all values for each point. | |
Minimum | Get the minimum value for each point. | |
Maximum | Get the maximum value 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). | |
StandardDeviation | Gets the standard deviation of the values for each point (sample). | |
StandardDeviationPop | Gets the standard deviation of the values for each point (population). |