summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/chart2/ExplicitScaleData.idl
blob: 7639a4d333783d4fb121af9ed40b3b0445347a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef com_sun_star_chart2_ExplicitScaleData_idl
#define com_sun_star_chart2_ExplicitScaleData_idl

#ifndef com_sun_star_chart2_Break_idl
#include <com/sun/star/chart2/Break.idl>
#endif

#ifndef com_sun_star_chart2_XScaling_idl
#include <com/sun/star/chart2/XScaling.idl>
#endif

#ifndef com_sun_star_chart2_AxisOrientation_idl
#include <com/sun/star/chart2/AxisOrientation.idl>
#endif

//=============================================================================

module com {  module sun {  module star {  module chart2 {

//=============================================================================

/** This structure contains the explicit values for a scale like Minimum and Maximum.
    In contrast these values may also be implicit (automatically
    calculated) as indicated within the structure <type>ScaleData</type>.
  */
struct ExplicitScaleData
{
    double Minimum;
    double Maximum;
    double Origin;

    AxisOrientation     Orientation;

    XScaling            Scaling;

    sequence< Break >   Breaks;

    long   AxisType;
};

//=============================================================================

}; }; }; };

#endif