Xamarin.iOS Documentation | ComponentOne
C1.iOS.Chart Assembly / C1.iOS.Chart Namespace / MovingAverageType Enumeration


In This Topic
    MovingAverageType Enumeration
    In This Topic
    Specifies the type of MovingAverage ChartSeries.
    Syntax
    'Declaration
     
    
    Public Enum MovingAverageType 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As MovingAverageType
    public enum MovingAverageType : System.Enum 
    Members
    MemberDescription
    ExponentialWeighted average of the last n values, where the weightage decreases exponentially with each previous value.
    SimpleAn average of the last n values.
    TriangularWeighted average of the last n values, whose result is equivalent to a double smoothed simple moving average.
    WeightedWeighted average of the last n values, where the weightage decreases by 1 with each previous value.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.iOS.Chart.MovingAverageType

    See Also