From 27a4d5597c0757611d0e2e682d0c05441859cc4e Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Wed, 3 Jul 2013 22:44:22 +0200 Subject: Fixes to compiler errors, setRegressionProperties description. Change-Id: I40ef93746e5f2a43ce58f0080db0b643e22404a1 --- .../com/sun/star/chart2/XRegressionCurveCalculator.idl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'offapi') 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, -- cgit