2D Chart for WinForms | ComponentOne
C1.Win.C1Chart.4.5.2 Assembly / C1.Win.C1Chart Namespace / TrendLineTypeEnum Enumeration

In This Topic
    TrendLineTypeEnum Enumeration
    In This Topic
    Use the members of this enumeration to set the value of the TrendLine.TrendLineType property in the TrendLine class.
    Syntax
    'Declaration
     
    Public Enum TrendLineTypeEnum 
       Inherits System.Enum
    public enum TrendLineTypeEnum : System.Enum 
    Members
    MemberDescription
    AverageAverage of y data values.
    ExponentRegression fit to the equation Y(x) = C0 * exp( C1*x).
    FourierRegression fit to the equation Y(x) = C0 + C1 * cos(x) + C2 * sin(x) + C3 * cos(2*x) + C4 * sin(2*x) + …
    LogarithmicRegression fit to the equation Y(x) = C0 * ln(C1*x).
    MaximumMaximum of y data values.
    MinimumMinimum of y data values.
    MovingAverageMoving average of y data values Yi = ( yi + yi-1 + yi-2 + … + yi-p+1 ) / p, where p – period.
    PolynomRegression fit to the equation Y(x) = C0 + C1*x + C2*x2 + … + Cn-1*xn-1, where n – number of terms.
    PowerRegression fit to the equation Y(x) = C0 * x C1.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Win.C1Chart.TrendLineTypeEnum

    See Also