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


In This Topic
    FitType Enumeration
    In This Topic
    Specifies fit type for trend line.
    Syntax
    'Declaration
     
    
    Public Enum FitType 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As FitType
    public enum FitType : System.Enum 
    Members
    MemberDescription
    AverageXLine at average x-data value.
    AverageYLine at average y-data value.
    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)
    MaxXLine at maximum x-data value.
    MaxYLine at maximum y-data value.
    MinXLine at minimal x-data value.
    MinYLine at minimal y-data value.
    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 * pow(x, C1)
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.WPF.C1Chart.Extended.FitType

    See Also