summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/chart2/AxisType.idl
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-05-22 13:48:13 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-05-22 13:48:13 +0000
commite8878d79dfbdeb4b6edc94bd6f9824c96a02b097 (patch)
treed3be3eef39b1b178f7ab6d76d18ce74d707d5fd7 /offapi/com/sun/star/chart2/AxisType.idl
parent250074b061a279a312a07176ab0c13b545013119 (diff)
INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED
2005/11/25 16:04:06 iha 1.1.2.4: correct labels at z axis for deep stacking 2005/10/11 12:07:10 bm 1.1.2.3: license header change 2005/09/16 16:12:38 iha 1.1.2.2: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2005/05/09 09:29:09 bm 1.1.2.1: API moved here from chart2 project
Diffstat (limited to 'offapi/com/sun/star/chart2/AxisType.idl')
-rw-r--r--offapi/com/sun/star/chart2/AxisType.idl68
1 files changed, 68 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/AxisType.idl b/offapi/com/sun/star/chart2/AxisType.idl
new file mode 100644
index 000000000000..c7365a4d99b3
--- /dev/null
+++ b/offapi/com/sun/star/chart2/AxisType.idl
@@ -0,0 +1,68 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: AxisType.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-05-22 14:48:13 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+#ifndef com_sun_star_chart2_AxisType_idl
+#define com_sun_star_chart2_AxisType_idl
+
+module com
+{
+module sun
+{
+module star
+{
+module chart2
+{
+
+constants AxisType
+{
+ /** the axis represent real numbers
+ */
+ const long REALNUMBER = 0;
+ /** the axis represent real numbers in percent
+ */
+ const long PERCENT = 1;
+ /** the axis represent discrete categories
+ */
+ const long CATEGORY = 2;
+ /** the axis shows the series names (z axis)
+ */
+ const long SERIES = 3;
+};
+
+} ; // chart2
+} ; // com
+} ; // sun
+} ; // star
+
+#endif