ComponentOne Reports for WPF
C1.C1Report.CustomFields Namespace / Chart.AggregateEnum Enumeration

In This Topic
    Chart.AggregateEnum Enumeration
    In This Topic
    Specifies how data should be aggregated for charting.
    Syntax
    'Declaration
     
    Public Enum Chart.AggregateEnum 
       Inherits System.Enum
    public enum Chart.AggregateEnum : 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.C1Report.CustomFields.Chart.AggregateEnum

    See Also