[]
        
(Showing Draft Content)

C1.Web.Mvc.Chart.TrendLineFitType

TrendLineFitType Enum

Specifies whether and where the Series is visible.

Namespace: C1.Web.Mvc.Chart
Assembly: C1.Web.Mvc.dll
Syntax
public enum TrendLineFitType

Fields

Name Description
AverageX

The average X-value.

AverageY

The average Y-value.

Exponential

Regression fit to the equation Y(x) = a * exp(b*x).

Fourier

Regression fit to the equation Y(x) = a + b * cos(x) + c * sin(x) + d * cos(2x) + e * sin(2x) + ...

Linear

A straight line that most closely approximates the data. Y(x) = a * x + b.

Logarithmic

Regression fit to the equation Y(x) = a * ln(x) + b.

MaxX

The maximum X-value.

MaxY

The maximum Y-value.

MinX

The minimum X-value.

MinY

The minimum Y-value.

Polynomial

Regression fit to the equation Y(x) = a * x^n + b * x^n-1 + c * x^n-2 + ... + z.

Power

Regression fit to the equation Y(x) = a * pow(x, b).