1*b1cdbd2cSJim Jagielski/**************************************************************
2*b1cdbd2cSJim Jagielski *
3*b1cdbd2cSJim Jagielski * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski *
11*b1cdbd2cSJim Jagielski *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski *
13*b1cdbd2cSJim Jagielski * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski * under the License.
19*b1cdbd2cSJim Jagielski *
20*b1cdbd2cSJim Jagielski *************************************************************/
21*b1cdbd2cSJim Jagielski
22*b1cdbd2cSJim Jagielski#ifndef com_sun_star_chart2_ScaleData_idl
23*b1cdbd2cSJim Jagielski#define com_sun_star_chart2_ScaleData_idl
24*b1cdbd2cSJim Jagielski
25*b1cdbd2cSJim Jagielski#include <com/sun/star/chart2/XScaling.idl>
26*b1cdbd2cSJim Jagielski#include <com/sun/star/chart2/AxisOrientation.idl>
27*b1cdbd2cSJim Jagielski#include <com/sun/star/chart2/data/XLabeledDataSequence.idl>
28*b1cdbd2cSJim Jagielski#include <com/sun/star/chart2/AxisType.idl>
29*b1cdbd2cSJim Jagielski#include <com/sun/star/chart2/IncrementData.idl>
30*b1cdbd2cSJim Jagielski#include <com/sun/star/chart/TimeIncrement.idl>
31*b1cdbd2cSJim Jagielski
32*b1cdbd2cSJim Jagielski//=============================================================================
33*b1cdbd2cSJim Jagielski
34*b1cdbd2cSJim Jagielskimodule com {  module sun {  module star {  module chart2 {
35*b1cdbd2cSJim Jagielski
36*b1cdbd2cSJim Jagielski//=============================================================================
37*b1cdbd2cSJim Jagielski
38*b1cdbd2cSJim Jagielskistruct ScaleData
39*b1cdbd2cSJim Jagielski{
40*b1cdbd2cSJim Jagielski    /** if the any contains a double value this is used as a fixed
41*b1cdbd2cSJim Jagielski        maximum.  Otherwise, if the any is empty or contains an
42*b1cdbd2cSJim Jagielski        incompatible type, the maximum is automatic.
43*b1cdbd2cSJim Jagielski
44*b1cdbd2cSJim Jagielski        <p>If the maximum is automatic, this means, each view that
45*b1cdbd2cSJim Jagielski        represents the model containing this scale, has to calculate a
46*b1cdbd2cSJim Jagielski        maximum by its own means.</p>
47*b1cdbd2cSJim Jagielski     */
48*b1cdbd2cSJim Jagielski    any Minimum;
49*b1cdbd2cSJim Jagielski
50*b1cdbd2cSJim Jagielski    /** if the any contains a double value this is used as a fixed
51*b1cdbd2cSJim Jagielski        minimum.  Otherwise, if the any is empty or contains an
52*b1cdbd2cSJim Jagielski        incompatible type, the minimum is automatic.
53*b1cdbd2cSJim Jagielski
54*b1cdbd2cSJim Jagielski        <p>If the minimum is automatic, this means, each view that
55*b1cdbd2cSJim Jagielski        represents the model containing this scale, has to calculate a
56*b1cdbd2cSJim Jagielski        minimum by its own means.</p>
57*b1cdbd2cSJim Jagielski     */
58*b1cdbd2cSJim Jagielski    any Maximum;
59*b1cdbd2cSJim Jagielski
60*b1cdbd2cSJim Jagielski
61*b1cdbd2cSJim Jagielski    /** The Origin indicates where other axes cross this axis.
62*b1cdbd2cSJim Jagielski        If the any contains a double value that value is used.
63*b1cdbd2cSJim Jagielski        Otherwise an appropriate value has to be calculated
64*b1cdbd2cSJim Jagielski        by that instances using Origin.
65*b1cdbd2cSJim Jagielski     */
66*b1cdbd2cSJim Jagielski    any Origin;
67*b1cdbd2cSJim Jagielski
68*b1cdbd2cSJim Jagielski    /** Axis orientation (standard or reversed).
69*b1cdbd2cSJim Jagielski
70*b1cdbd2cSJim Jagielski        <p>If used at the Y axis in pie charts or doughnut charts, specifies
71*b1cdbd2cSJim Jagielski        the rotation direction of the pie. The value
72*b1cdbd2cSJim Jagielski        <const>AxisOrientation::MATHEMATICAL</const> rotates the pie
73*b1cdbd2cSJim Jagielski        counterclockwise, the value <const>AxisOrientation::REVERSE</const>
74*b1cdbd2cSJim Jagielski        rotates the pie clockwise.</p>
75*b1cdbd2cSJim Jagielski
76*b1cdbd2cSJim Jagielski        <p>Note: Is this a good place for the axis orientation? Two axes may
77*b1cdbd2cSJim Jagielski        use the same scale, but point into two different directions.</p>
78*b1cdbd2cSJim Jagielski     */
79*b1cdbd2cSJim Jagielski    AxisOrientation     Orientation;
80*b1cdbd2cSJim Jagielski
81*b1cdbd2cSJim Jagielski    XScaling            Scaling;
82*b1cdbd2cSJim Jagielski
83*b1cdbd2cSJim Jagielski    data::XLabeledDataSequence Categories;
84*b1cdbd2cSJim Jagielski
85*b1cdbd2cSJim Jagielski    /** describes the type of the axis.
86*b1cdbd2cSJim Jagielski
87*b1cdbd2cSJim Jagielski        <p>It can be a real number axis or a category axis or something else.
88*b1cdbd2cSJim Jagielski        AxisType is one value out of the constant group <type>AxisType</type>.</p>
89*b1cdbd2cSJim Jagielski    */
90*b1cdbd2cSJim Jagielski    long   AxisType;
91*b1cdbd2cSJim Jagielski
92*b1cdbd2cSJim Jagielski    /** if true an AxisType CATEGORY is interpreted as DATE if the underlying data given in Categories are dates
93*b1cdbd2cSJim Jagielski    */
94*b1cdbd2cSJim Jagielski    boolean AutoDateAxis;
95*b1cdbd2cSJim Jagielski
96*b1cdbd2cSJim Jagielski    /** describes wether data points on category or date axis are placed between tickmarks or not
97*b1cdbd2cSJim Jagielski    if true the maximum on the scale will be expanded for one interval
98*b1cdbd2cSJim Jagielski    */
99*b1cdbd2cSJim Jagielski    boolean ShiftedCategoryPosition;
100*b1cdbd2cSJim Jagielski
101*b1cdbd2cSJim Jagielski    /** increment data to be used for not date-time axis
102*b1cdbd2cSJim Jagielski    */
103*b1cdbd2cSJim Jagielski    IncrementData IncrementData;
104*b1cdbd2cSJim Jagielski
105*b1cdbd2cSJim Jagielski    /** increment data to be used in case of date-time axis
106*b1cdbd2cSJim Jagielski    */
107*b1cdbd2cSJim Jagielski    ::com::sun::star::chart::TimeIncrement TimeIncrement;
108*b1cdbd2cSJim Jagielski};
109*b1cdbd2cSJim Jagielski
110*b1cdbd2cSJim Jagielski//=============================================================================
111*b1cdbd2cSJim Jagielski
112*b1cdbd2cSJim Jagielski}; }; }; };
113*b1cdbd2cSJim Jagielski
114*b1cdbd2cSJim Jagielski#endif
115