#ifndef com_sun_star_chart2_ExplicitScaleData_idl #define com_sun_star_chart2_ExplicitScaleData_idl #ifndef com_sun_star_chart2_Break_idl #include #endif #ifndef com_sun_star_chart2_XScaling_idl #include #endif #ifndef com_sun_star_chart2_AxisOrientation_idl #include #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 ScaleData. */ struct ExplicitScaleData { double Minimum; double Maximum; double Origin; AxisOrientation Orientation; XScaling Scaling; sequence< Break > Breaks; long AxisType; }; //============================================================================= }; }; }; }; #endif