1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_chart_ChartDataRowProperties_idl__
24#define __com_sun_star_chart_ChartDataRowProperties_idl__
25
26#ifndef __com_sun_star_chart_ChartDataPointProperties_idl__
27#include <com/sun/star/chart/ChartDataPointProperties.idl>
28#endif
29
30#ifndef __com_sun_star_chart_ChartStatistics_idl__
31#include <com/sun/star/chart/ChartStatistics.idl>
32#endif
33
34#ifndef __com_sun_star_beans_XPropertySet_idl__
35#include <com/sun/star/beans/XPropertySet.idl>
36#endif
37
38#ifndef _com_sun_star_xml_UserDefinedAttributeSupplier_idl_
39#include <com/sun/star/xml/UserDefinedAttributeSupplier.idl>
40#endif
41
42//=============================================================================
43
44 module com {  module sun {  module star {  module chart {
45
46//=============================================================================
47
48/** specifies the properties for a group of graphic elements which
49	belong to a data row (also known as data series).
50
51	<p>For this service, the properties supported by
52	<type>ChartDataPointProperties</type> are applied to all data
53	point elements contained in this group.  They serve as a template;
54	thus, when changing a data point property afterwards</p>
55
56    @see ChartDataPointProperties
57 */
58published service ChartDataRowProperties
59{
60	service com::sun::star::chart::ChartDataPointProperties;
61    /** Statistical properties are not available for all types of
62        diagrams.
63    */
64	[optional] service com::sun::star::chart::ChartStatistics;
65
66    /** If <type>ChartDataRowProperties</type> may be stored as XML
67        file, this service should be supported in order to preserve
68        unparsed XML attributes.
69
70	@since OpenOffice 1.1.2
71     */
72    [optional] service com::sun::star::xml::UserDefinedAttributeSupplier;
73
74	interface com::sun::star::beans::XPropertySet;
75
76	//-------------------------------------------------------------------------
77
78	/** determines to which axis the data row is assigned.
79
80        <p>The axis must be a primary or secondary y-axis</p>
81
82		@see ChartAxisAssign
83        @see ChartAxisYSupplier
84        @see ChartTwoAxisYSupplier
85	 */
86	[property] long Axis;
87
88	//-------------------------------------------------------------------------
89
90	/** holds the properties of the regression line, if such one is
91        enabled.
92
93        @see ChartLine
94        @see ChartStatistics
95	 */
96	[optional, readonly, property] com::sun::star::beans::XPropertySet DataRegressionProperties;
97
98	//-------------------------------------------------------------------------
99
100	/** holds the properties of the error markers, if those are
101        enabled.
102
103        @see ChartLine
104        @see ChartStatistics
105	 */
106	[optional, readonly, property] com::sun::star::beans::XPropertySet DataErrorProperties;
107
108	//-------------------------------------------------------------------------
109
110	/** holds the properties of the average line, if such one is
111        enabled.
112
113        @see ChartLine
114        @see ChartStatistics
115	 */
116	[optional, readonly, property] com::sun::star::beans::XPropertySet DataMeanValueProperties;
117};
118
119//=============================================================================
120
121}; }; }; };
122
123#endif
124