ComponentOne FlexChart for UWP
FitType Enumeration

C1.UWP.FlexChart Assembly > C1.Chart Namespace : FitType Enumeration
Specifies fit type for trend line.
Syntax
'Declaration
 
Public Enum FitType 
   Inherits System.Enum
public enum FitType : System.Enum 
Members
MemberDescription
AverageXAverage X-value.
AverageYAverage Y-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) + ...
LinearRegression fit to the equation Y(x) = C0 + C1*x.
LogarithmicRegression fit to the equation Y(x) = C0 * ln(C1*x)
MaxXMaximum X-value.
MaxYMaximum Y-value.
MinXMinimal X-value.
MinYMinimal Y-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.Chart.FitType

See Also

Reference

C1.Chart Namespace