xref: /trunk/main/offapi/com/sun/star/chart2/XScaling.idl (revision cdf0e10c)
1#ifndef com_sun_star_chart2_XScaling_idl
2#define com_sun_star_chart2_XScaling_idl
3
4#ifndef __com_sun_star_uno_XInterface_idl__
5#include <com/sun/star/uno/XInterface.idl>
6#endif
7
8//=============================================================================
9
10module com {  module sun {  module star {  module chart2 {
11
12//=============================================================================
13
14interface XScaling : ::com::sun::star::uno::XInterface
15{
16	/** needs to keep relative ordering
17	*/
18	double doScaling([in] double value);
19	com::sun::star::chart2::XScaling getInverseScaling();
20
21	//maybe provide correction for Min/Max
22	//double getMinimum(); ?adjust <-> min/max may not exist
23	//double getMaximum();
24
25	//... or better/additionally?: provide default values for Min&Max
26};
27
28//=============================================================================
29
30}; }; }; };
31
32#endif
33