diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2015-04-02 15:31:04 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-02 17:31:24 +0200 |
commit | 2560c5222c811a3975fdccfd8a4f423e52a15e10 (patch) | |
tree | f484cdf180450a337050f123539c91ae949aab3d /offapi | |
parent | 68cec355eb75f1a03dabc5ccb29c97d281de3f32 (diff) |
add properties for new databar properties
Change-Id: Icc65283a1e60ea61af917432e3fb577e7b0370a7
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sheet/DataBar.idl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/offapi/com/sun/star/sheet/DataBar.idl b/offapi/com/sun/star/sheet/DataBar.idl index 9045a6786686..3803dba661d6 100644 --- a/offapi/com/sun/star/sheet/DataBar.idl +++ b/offapi/com/sun/star/sheet/DataBar.idl @@ -39,6 +39,20 @@ service DataBar [property, optional] com::sun::star::util::Color NegativeColor; [property] sequence<XDataBarEntry> DataBarEntries; + + /** + * Mimimum databar length in percent of cell width. + * + * Allowed values are [0, 100) but smaller than MaximumLength. + */ + [property] double MinimumLength; + + /** + * Maximum databar length in percent of cell width. + * + * Allowed values are (0, 1000) but larger than MinimumLength. + */ + [property] double MaximumLength; }; |