ASP.NET MVC Controls | ComponentOne
C1.Web.Mvc.Chart Namespace / TrendLineFitType Enumeration

In This Topic
    TrendLineFitType Enumeration
    In This Topic
    Specifies whether and where the Series is visible.
    Syntax
    'Declaration
     
    
    Public Enum TrendLineFitType 
       Inherits System.Enum
    public enum TrendLineFitType : System.Enum 
    Members
    MemberDescription
    AverageXThe average X-value.
    AverageYThe average Y-value.
    ExponentialRegression fit to the equation Y(x) = a * exp(b*x).
    FourierRegression fit to the equation Y(x) = a + b * cos(x) + c * sin(x) + d * cos(2*x) + e * sin(2*x) + ...
    LinearA straight line that most closely approximates the data. Y(x) = a * x + b.
    LogarithmicRegression fit to the equation Y(x) = a * ln(x) + b.
    MaxXThe maximum X-value.
    MaxYThe maximum Y-value.
    MinXThe minimum X-value.
    MinYThe minimum Y-value.
    PolynomialRegression fit to the equation Y(x) = a * x^n + b * x^n-1 + c * x^n-2 + ... + z.
    PowerRegression fit to the equation Y(x) = a * pow(x, b).
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Web.Mvc.Chart.TrendLineFitType

    See Also