summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-06 15:05:32 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-06 15:05:32 +0000
commit799b6fc821730f1616db4d32e395ab2edb707d63 (patch)
tree893e64c209d1e4bb2653828d9febeeb7308229ba
parent8779dc130e114f90d904c5be0b0135401f34b814 (diff)
INTEGRATION: CWS chart20_DEV300 (1.9.472); FILE MERGED
2008/02/21 15:49:14 bm 1.9.472.1: #i366# +ErrorBarStyle constant group containing FROM_DATA
-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;
};
//=============================================================================