enum ChartRegressionCurveType in module com::sun::star::chart::

(Global Index)

Syntax

enum ChartRegressionCurveType;

Description

specifiest the type of the regression curve to be displayed.

Values Summary

NONE displays no regression curve.

LINEAR displays a linear regression curve.

LOGARITHM displays a linear logarithmic regression curve.

EXPONENTIAL displays an exponential regression curve.

POLYNOMIAL displays a polynomial regression curve.

POWER displays a regression curve using a power function.

Values Details



NONE

Syntax

NONE,

Description

displays no regression curve.


LINEAR

Syntax

LINEAR,

Description

displays a linear regression curve.

The values of the series are approximated using the model y = A · x + B .


LOGARITHM

Syntax

LOGARITHM,

Description

displays a linear logarithmic regression curve.

The values of the series are approximated using the model y = A ·log( x ) + B .


EXPONENTIAL

Syntax

EXPONENTIAL,

Description

displays an exponential regression curve.

The values of the series are approximated using the model y = A ·e B · x .


POLYNOMIAL

[ DEPRECATED ]

Syntax

POLYNOMIAL,

Description

displays a polynomial regression curve.


POWER

Syntax

POWER,

Description

displays a regression curve using a power function.

The values of the series are approximated using the model y = x B .

Top of Page