merged tag ooo/OOO330_m14
[LibreOffice.git] / offapi / com / sun / star / chart2 / ExplicitScaleData.idl
blob7639a4d333783d4fb121af9ed40b3b0445347a0e
1 #ifndef com_sun_star_chart2_ExplicitScaleData_idl
2 #define com_sun_star_chart2_ExplicitScaleData_idl
4 #ifndef com_sun_star_chart2_Break_idl
5 #include <com/sun/star/chart2/Break.idl>
6 #endif
8 #ifndef com_sun_star_chart2_XScaling_idl
9 #include <com/sun/star/chart2/XScaling.idl>
10 #endif
12 #ifndef com_sun_star_chart2_AxisOrientation_idl
13 #include <com/sun/star/chart2/AxisOrientation.idl>
14 #endif
16 //=============================================================================
18 module com { module sun { module star { module chart2 {
20 //=============================================================================
22 /** This structure contains the explicit values for a scale like Minimum and Maximum.
23 In contrast these values may also be implicit (automatically
24 calculated) as indicated within the structure <type>ScaleData</type>.
26 struct ExplicitScaleData
28 double Minimum;
29 double Maximum;
30 double Origin;
32 AxisOrientation Orientation;
34 XScaling Scaling;
36 sequence< Break > Breaks;
38 long AxisType;
41 //=============================================================================
43 }; }; }; };
45 #endif