Gtk-WARNING gtktreestore.c:1047: Invalid column number 1 added to iter
[LibreOffice.git] / offapi / com / sun / star / chart / ChartDataRowProperties.idl
blob327405f9101d7f37fe64a8d3a34dd94eef5c7bea
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 module com { module sun { module star { module chart {
24 /** specifies the properties for a group of graphic elements which
25 belong to a data row (also known as data series).
27 <p>For this service, the properties supported by
28 ChartDataPointProperties are applied to all data
29 point elements contained in this group. They serve as a template;
30 thus, when changing a data point property afterwards</p>
32 @see ChartDataPointProperties
34 published service ChartDataRowProperties
36 service com::sun::star::chart::ChartDataPointProperties;
37 /** Statistical properties are not available for all types of
38 diagrams.
40 [optional] service com::sun::star::chart::ChartStatistics;
42 /** If ChartDataRowProperties may be stored as XML
43 file, this service should be supported in order to preserve
44 unparsed XML attributes.
46 @since OOo 1.1.2
48 [optional] service com::sun::star::xml::UserDefinedAttributesSupplier;
50 interface com::sun::star::beans::XPropertySet;
53 /** determines to which axis the data row is assigned.
55 <p>The axis must be a primary or secondary y-axis</p>
57 @see ChartAxisAssign
58 @see ChartAxisYSupplier
59 @see ChartTwoAxisYSupplier
61 [property] long Axis;
64 /** holds the properties of the regression line, if such one is
65 enabled.
67 @see ChartLine
68 @see ChartStatistics
70 [optional, readonly, property] com::sun::star::beans::XPropertySet DataRegressionProperties;
73 /** holds the properties of the error markers, if those are
74 enabled.
76 @see ChartLine
77 @see ChartStatistics
79 [optional, readonly, property] com::sun::star::beans::XPropertySet DataErrorProperties;
82 /** holds the properties of the average line, if such one is
83 enabled.
85 @see ChartLine
86 @see ChartStatistics
88 [optional, readonly, property] com::sun::star::beans::XPropertySet DataMeanValueProperties;
92 }; }; }; };
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */