summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/chart
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/chart')
-rw-r--r--offapi/com/sun/star/chart/ChartStatistics.idl29
1 files changed, 25 insertions, 4 deletions
diff --git a/offapi/com/sun/star/chart/ChartStatistics.idl b/offapi/com/sun/star/chart/ChartStatistics.idl
index 04863cfbf..da9d4acbe 100644
--- a/offapi/com/sun/star/chart/ChartStatistics.idl
+++ b/offapi/com/sun/star/chart/ChartStatistics.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: ChartStatistics.idl,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 22:10:53 $
+ * last change: $Author: kz $ $Date: 2008-03-06 16:05:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -50,7 +50,8 @@
#ifndef __com_sun_star_chart_ChartRegressionCurveType_idl__
#include <com/sun/star/chart/ChartRegressionCurveType.idl>
#endif
-
+
+#include <com/sun/star/chart/ErrorBarStyle.idl>
//=============================================================================
@@ -104,6 +105,8 @@ published service ChartStatistics
/** determines the type of error to indicate.
+ @deprecated
+
@see ChartErrorCategory
@see PercentageError
@see ErrorMargin
@@ -112,6 +115,13 @@ published service ChartStatistics
@see ErrorIndicator
*/
[property] com::sun::star::chart::ChartErrorCategory ErrorCategory;
+
+ /** determines the style of the error bars. Use this instead of
+ ErrorCategory
+
+ @see ErrorBarStyle
+ */
+ [optional, property] long ErrorBarStyle;
//-------------------------------------------------------------------------
@@ -160,7 +170,18 @@ published service ChartStatistics
@see ChartRegressionCurveType
*/
[property] com::sun::star::chart::ChartRegressionCurveType RegressionCurves;
-
+
+ /** contains a cell range string for positve error bars. This
+ property is used when the <type>ErrorBarCategory</type> is set
+ to <member>ErrorBarCategory::FROM_DATA</member>.
+ */
+ [optional, property] string ErrorBarRangePositive;
+
+ /** contains a cell range string for negative error bars. This
+ property is used when the <type>ErrorBarCategory</type> is set
+ to <member>ErrorBarCategory::FROM_DATA</member>.
+ */
+ [optional, property] string ErrorBarRangeNegative;
};
//=============================================================================