1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 chart2
{
26 /** if the any contains a double value this is used as a fixed
27 maximum. Otherwise, if the any is empty or contains an
28 incompatible type, the maximum is automatic.
30 <p>If the maximum is automatic, this means, each view that
31 represents the model containing this scale, has to calculate a
32 maximum by its own means.</p>
36 /** if the any contains a double value this is used as a fixed
37 minimum. Otherwise, if the any is empty or contains an
38 incompatible type, the minimum is automatic.
40 <p>If the minimum is automatic, this means, each view that
41 represents the model containing this scale, has to calculate a
42 minimum by its own means.</p>
47 /** The Origin indicates where other axes cross this axis.
48 If the any contains a double value that value is used.
49 Otherwise an appropriate value has to be calculated
50 by that instances using Origin.
54 /** Axis orientation (standard or reversed).
56 <p>If used at the Y axis in pie charts or doughnut charts, specifies
57 the rotation direction of the pie. The value
58 AxisOrientation::MATHEMATICAL rotates the pie
59 counterclockwise, the value AxisOrientation::REVERSE
60 rotates the pie clockwise.</p>
62 <p>Note: Is this a good place for the axis orientation? Two axes may
63 use the same scale, but point into two different directions.</p>
65 AxisOrientation Orientation
;
69 com
::sun
::star
::chart2
::data
::XLabeledDataSequence Categories
;
71 /** describes the type of the axis.
73 <p>It can be a real number axis or a category axis or something else.
74 AxisType is one value out of the constant group AxisType.</p>
78 /** if true an AxisType CATEGORY is interpreted as DATE if the underlying data given in Categories are dates
82 /** describes whether data points on category or date axis are placed between tickmarks or not
83 if true the maximum on the scale will be expanded for one interval
85 boolean ShiftedCategoryPosition
;
87 /** increment data to be used for not date-time axis
89 IncrementData IncrementData
;
91 /** increment data to be used in case of date-time axis
93 ::com
::sun
::star
::chart
::TimeIncrement TimeIncrement
;
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */