tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / chart2 / Diagram.idl
blob025d821f83f52805c066f73e896c93b1a8287eae
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 .
20 module com
22 module sun
24 module star
26 module chart2
29 service Diagram
31 interface ::com::sun::star::chart2::XDiagram;
33 interface ::com::sun::star::chart2::XCoordinateSystemContainer;
35 /** gives access to the sub title of a chart document
37 interface XTitled;
39 /** makes it easy to set suitable defaults for illumination and rotation for 3D charts
41 [optional] interface ::com::sun::star::chart::X3DDefaultSetter;
43 /** The position is as a relative position on the page.
45 <p>If a relative position is given the diagram is not automatically placed,
46 but instead is placed relative on the page.</p>
48 [property, maybevoid] ::com::sun::star::chart2::RelativePosition RelativePosition;
50 /** The size of the diagram as relative size of the page size.
52 [property] ::com::sun::star::chart2::RelativeSize RelativeSize;
54 /** The attributes RelativePosition and RelativeSize should be used for the inner coordinate region without axis labels and without data labels.
56 [optional, property] boolean PosSizeExcludeLabels;
58 /** Sort data points by x values for rendering
60 [optional, property] boolean SortByXValues;
62 /** Draw connection lines for stacked bar charts.
64 [optional, property] boolean ConnectBars;
66 /** If bars of a bar or column chart are attached to different
67 axis, this property determines how to display those. If
68 `TRUE`, the bars are grouped together in one block for each
69 axis, thus they are painted one group over the other.
71 <p>If `FALSE`, the bars are displayed side-by-side, as if
72 they were all attached to the same axis.</p>
74 <p>If all data series of a bar or column chart are attached to
75 only one axis, this property has no effect.</p>
77 [optional, property] boolean GroupBarsPerAxis;
79 /** Starting angle in degrees for pie charts and doughnut charts.
81 [optional, property] long StartingAngle;
83 [optional, property] boolean RightAngledAxes;
85 /** Perspective of 3D charts ( [0,100] ).
87 [optional, property] long Perspective;
89 /** Horizontal rotation of 3D charts in degrees ( ]-180,180] ).
91 [optional, property] long RotationHorizontal;
93 /** Vertical rotation of 3D charts in degrees ( ]-180,180] ).
95 [optional, property] long RotationVertical;
97 /** specifies how empty or invalid cells in the provided data should be handled when displayed
99 @see ::com::sun::star::chart::MissingValueTreatment
101 [optional, property] long MissingValueTreatment;
103 [optional, property] string ExternalData;
107 } ; // chart2
108 } ; // com
109 } ; // sun
110 } ; // star
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */