ComponentOne Chart for WPF and Silverlight
C1.WPF.C1Chart Namespace / Aggregate Enumeration


In This Topic
    Aggregate Enumeration
    In This Topic
    Specifies how data should be aggregated for charting.
    Syntax
    'Declaration
     
    
    Public Enum Aggregate 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As Aggregate
    public enum Aggregate : System.Enum 
    Members
    MemberDescription
    AverageAverage all values for each point.
    CountNumber of values for each point.
    MaximumGet the maximum value for each point.
    MinimumGet the minimum value for each point.
    NoneRaw values (no aggregation).
    StandardDeviationGets the standard deviation of the values for each point (sample).
    StandardDeviationPopGets the standard deviation of the values for each point (population).
    SumSum all values for each point.
    VarianceGets the variance of the values for each point (sample).
    VariancePopGets the variance of the values for each point (population).
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.WPF.C1Chart.Aggregate

    See Also