2000-11-06 02:23:00 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 13:13:51 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-11-06 02:23:00 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-11-06 02:23:00 -06:00
|
|
|
*
|
2008-04-10 13:13:51 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-11-06 02:23:00 -06:00
|
|
|
*
|
2008-04-10 13:13:51 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-11-06 02:23:00 -06:00
|
|
|
*
|
2008-04-10 13:13:51 -05:00
|
|
|
* 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.
|
2000-11-06 02:23:00 -06:00
|
|
|
*
|
2008-04-10 13:13:51 -05:00
|
|
|
* 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).
|
2000-11-06 02:23:00 -06:00
|
|
|
*
|
2008-04-10 13:13:51 -05:00
|
|
|
* 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.
|
2000-11-06 02:23:00 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef __com_sun_star_chart_ChartDataRowProperties_idl__
|
|
|
|
#define __com_sun_star_chart_ChartDataRowProperties_idl__
|
|
|
|
|
|
|
|
#ifndef __com_sun_star_chart_ChartDataPointProperties_idl__
|
|
|
|
#include <com/sun/star/chart/ChartDataPointProperties.idl>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __com_sun_star_chart_ChartStatistics_idl__
|
|
|
|
#include <com/sun/star/chart/ChartStatistics.idl>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __com_sun_star_beans_XPropertySet_idl__
|
|
|
|
#include <com/sun/star/beans/XPropertySet.idl>
|
|
|
|
#endif
|
|
|
|
|
2003-03-26 06:59:19 -06:00
|
|
|
#ifndef _com_sun_star_xml_UserDefinedAttributeSupplier_idl_
|
|
|
|
#include <com/sun/star/xml/UserDefinedAttributeSupplier.idl>
|
|
|
|
#endif
|
2000-11-06 02:23:00 -06:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
module com { module sun { module star { module chart {
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
/** specifies the properties for a group of graphic elements which
|
|
|
|
belong to a data row (also known as data series).
|
2000-11-06 02:23:00 -06:00
|
|
|
|
|
|
|
<p>For this service, the properties supported by
|
2002-10-03 07:11:20 -05:00
|
|
|
<type>ChartDataPointProperties</type> are applied to all data
|
|
|
|
point elements contained in this group. They serve as a template;
|
|
|
|
thus, when changing a data point property afterwards</p>
|
2000-11-06 02:23:00 -06:00
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
@see ChartDataPointProperties
|
2000-11-06 02:23:00 -06:00
|
|
|
*/
|
2004-06-03 11:55:23 -05:00
|
|
|
published service ChartDataRowProperties
|
2000-11-06 02:23:00 -06:00
|
|
|
{
|
|
|
|
service com::sun::star::chart::ChartDataPointProperties;
|
2002-10-03 07:11:20 -05:00
|
|
|
/** Statistical properties are not available for all types of
|
|
|
|
diagrams.
|
|
|
|
*/
|
|
|
|
[optional] service com::sun::star::chart::ChartStatistics;
|
2003-03-26 06:59:19 -06:00
|
|
|
|
|
|
|
/** If <type>ChartDataRowProperties</type> may be stored as XML
|
|
|
|
file, this service should be supported in order to preserve
|
|
|
|
unparsed XML attributes.
|
2003-04-17 04:01:42 -05:00
|
|
|
|
2004-09-09 09:51:22 -05:00
|
|
|
@since OOo 1.1.2
|
2003-03-26 06:59:19 -06:00
|
|
|
*/
|
|
|
|
[optional] service com::sun::star::xml::UserDefinedAttributeSupplier;
|
|
|
|
|
2000-11-06 02:23:00 -06:00
|
|
|
interface com::sun::star::beans::XPropertySet;
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
/** determines to which axis the data row is assigned.
|
2000-11-06 02:23:00 -06:00
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
<p>The axis must be a primary or secondary y-axis</p>
|
2000-11-06 02:23:00 -06:00
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
@see ChartAxisAssign
|
|
|
|
@see ChartAxisYSupplier
|
|
|
|
@see ChartTwoAxisYSupplier
|
2000-11-06 02:23:00 -06:00
|
|
|
*/
|
|
|
|
[property] long Axis;
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
/** holds the properties of the regression line, if such one is
|
|
|
|
enabled.
|
|
|
|
|
|
|
|
@see ChartLine
|
|
|
|
@see ChartStatistics
|
2000-11-06 02:23:00 -06:00
|
|
|
*/
|
|
|
|
[optional, readonly, property] com::sun::star::beans::XPropertySet DataRegressionProperties;
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
/** holds the properties of the error markers, if those are
|
|
|
|
enabled.
|
|
|
|
|
|
|
|
@see ChartLine
|
|
|
|
@see ChartStatistics
|
2000-11-06 02:23:00 -06:00
|
|
|
*/
|
|
|
|
[optional, readonly, property] com::sun::star::beans::XPropertySet DataErrorProperties;
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
/** holds the properties of the average line, if such one is
|
|
|
|
enabled.
|
|
|
|
|
|
|
|
@see ChartLine
|
|
|
|
@see ChartStatistics
|
2000-11-06 02:23:00 -06:00
|
|
|
*/
|
|
|
|
[optional, readonly, property] com::sun::star::beans::XPropertySet DataMeanValueProperties;
|
|
|
|
};
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
}; }; }; };
|
|
|
|
|
|
|
|
#endif
|