diff options
author | Tomaž Vajngerl <quikee@gmail.com> | 2013-07-03 22:44:22 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2013-07-03 22:44:22 +0200 |
commit | 27a4d5597c0757611d0e2e682d0c05441859cc4e (patch) | |
tree | b4d49fe5d4459cddfb13ecf67c3322949d6a6e78 /offapi | |
parent | 926275d07184d441b3bfa1ceca26c4c1f2bc61db (diff) |
Fixes to compiler errors, setRegressionProperties description.
Change-Id: I40ef93746e5f2a43ce58f0080db0b643e22404a1
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl b/offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl index 506475a0c12e..efb57adcd085 100644 --- a/offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl +++ b/offapi/com/sun/star/chart2/XRegressionCurveCalculator.idl @@ -36,7 +36,23 @@ module chart2 interface XRegressionCurveCalculator : com::sun::star::uno::XInterface { + /** set calculation properties for curve calculation. + @param degree + Degree of polynomial regression curve, value should be greater than zero + If the curve is not polynomial, this property has no effect. + + @param period + Period of a moving average regression curve, value should greater or equal to 2 + If the curve is not moving average regression curve, this property has no effect. + + @param forceIntercept + Should force the intercept value. + + @param interceptValue + Intercept value. + + */ void setRegressionProperties( [in] long degree, [in] boolean forceIntercept, [in] double interceptValue, |