summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--offapi/com/sun/star/chart/ChartTwoAxisXSupplier.idl16
-rw-r--r--offapi/com/sun/star/chart/ChartTwoAxisYSupplier.idl16
-rw-r--r--offapi/com/sun/star/chart2/RectangularDataSource.idl89
3 files changed, 26 insertions, 95 deletions
diff --git a/offapi/com/sun/star/chart/ChartTwoAxisXSupplier.idl b/offapi/com/sun/star/chart/ChartTwoAxisXSupplier.idl
index 0ccc27262..07cf56a58 100644
--- a/offapi/com/sun/star/chart/ChartTwoAxisXSupplier.idl
+++ b/offapi/com/sun/star/chart/ChartTwoAxisXSupplier.idl
@@ -66,10 +66,20 @@ published service ChartTwoAxisXSupplier
//-------------------------------------------------------------------------
- /** determines if the description of the secondary x-axis
- is shown or hidden.
- */
+ /** determines for the secondary x-axis
+ if the labels at the tick marks are shown or hidden.
+ */
[property] boolean HasSecondaryXAxisDescription;
+
+ //-------------------------------------------------------------------------
+
+ /** determines if the title of the secondary X-axis is shown or hidden.
+
+ @see ChartTitle
+
+ @since OOo 3.0
+ */
+ [optional, property] boolean HasSecondaryXAxisTitle;
};
diff --git a/offapi/com/sun/star/chart/ChartTwoAxisYSupplier.idl b/offapi/com/sun/star/chart/ChartTwoAxisYSupplier.idl
index e48ae2da5..971dc1d00 100644
--- a/offapi/com/sun/star/chart/ChartTwoAxisYSupplier.idl
+++ b/offapi/com/sun/star/chart/ChartTwoAxisYSupplier.idl
@@ -67,10 +67,20 @@ published service ChartTwoAxisYSupplier
//-------------------------------------------------------------------------
- /** determines if the description of the secondary
- y-axis is shown or hidden.
- */
+ /** determines for the secondary y-axis
+ if the labels at the tick marks are shown or hidden.
+ */
[property] boolean HasSecondaryYAxisDescription;
+
+ //-------------------------------------------------------------------------
+
+ /** determines if the title of the secondary y-axis is shown or hidden.
+
+ @see ChartTitle
+
+ @since OOo 3.0
+ */
+ [optional, property] boolean HasSecondaryYAxisTitle;
};
diff --git a/offapi/com/sun/star/chart2/RectangularDataSource.idl b/offapi/com/sun/star/chart2/RectangularDataSource.idl
deleted file mode 100644
index 6ff8fb84b..000000000
--- a/offapi/com/sun/star/chart2/RectangularDataSource.idl
+++ /dev/null
@@ -1,89 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2008 by Sun Microsystems, Inc.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * $RCSfile: RectangularDataSource.idl,v $
- * $Revision: 1.3 $
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#ifndef com_sun_star_chart2_RectangularDataSource_idl
-#define com_sun_star_chart2_RectangularDataSource_idl
-
-#include <com/sun/star/chart/ChartDataRowSource.idl>
-#include <com/sun/star/chart/ChartDataArray.idl>
-
-#include <com/sun/star/chart2/DataSource.idl>
-
-module com
-{
-module sun
-{
-module star
-{
-module chart2
-{
-
-/** describes a data source that bases on a two-dimensional range of
- data, like a cell range in a spreadsheet.
-
- <p>Components supporting this service have the duty to interpret
- the given range in an appropriate way to represent a
- <type>DataSource</type>.</p>
- */
-service RectangularDataSource
-{
- /** A RectangularDataSource is certainly also a DataSource.
- */
- service DataSource;
-
- service ::com::sun::star::chart::ChartDataArray;
-
- /** contains a range string in the format specified by the Office
- XML format for tables, that refers to data in the table of a
- spreadsheet or a text document.
-
- <p>This range is used to determine the rectangular range
- chosen. The <member>DataSequence::SourceRange</member>
- properties of the <type>DataSequence</type>s are ignored for
- this type of <type>DataSource</type>.</p>
- */
- [property] string SourceRange;
-
- /** determines if the data referred to in
- <member>SourceRange</member> is split up into
- <type>DataSequence</type>s using rows
- (<member-scope="com::sun::star::chart">ChartDataRowSource::ROWS</member>)
- or columns
- (<member-scope="com::sun::star::chart">ChartDataRowSource::COLUMNS</member>).
- */
- [property] ::com::sun::star::chart::ChartDataRowSource DataRowSource;
-};
-
-} ; // chart2
-} ; // com
-} ; // sun
-} ; // star
-
-
-#endif