diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2020-01-30 23:58:57 +0100 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-01-31 10:43:22 +0100 |
commit | dff7a46fb46d1fa2a3ad674ee493ae2d59150fe3 (patch) | |
tree | a20c2913d75c8173ed24064c877bb14568359700 /offapi | |
parent | 84b396a235671ea77f1a9fa0d131cb56d7662737 (diff) |
tdf#130032 Chart OOXML Import: fix data label custom position
in case of all chart types except pie chart.
Clean up commit 4223ff2be69f03e571464b0b09ad0d278918631b
(tdf#48436 Chart: add CustomLabelPosition UNO API property).
Note: use the correct default OOXML label placement in case of
radar charts.
Change-Id: I9a8f509304b3c70d879c8c6a95bc91d15ac28521
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87759
Reviewed-by: László Németh <nemeth@numbertext.org>
Tested-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart/DataLabelPlacement.idl | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/DataPointProperties.idl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/offapi/com/sun/star/chart/DataLabelPlacement.idl b/offapi/com/sun/star/chart/DataLabelPlacement.idl index fbdc19fcce8f..f8e50effeaea 100644 --- a/offapi/com/sun/star/chart/DataLabelPlacement.idl +++ b/offapi/com/sun/star/chart/DataLabelPlacement.idl @@ -41,7 +41,7 @@ published constants DataLabelPlacement const long INSIDE = 10; const long OUTSIDE = 11; const long NEAR_ORIGIN = 12; - const long CUSTOM = 13; + /** @since LibreOffice 7.0 */ const long CUSTOM = 13; }; diff --git a/offapi/com/sun/star/chart2/DataPointProperties.idl b/offapi/com/sun/star/chart2/DataPointProperties.idl index a8725651c00a..4588b5bb9f10 100644 --- a/offapi/com/sun/star/chart2/DataPointProperties.idl +++ b/offapi/com/sun/star/chart2/DataPointProperties.idl @@ -331,7 +331,7 @@ service DataPointProperties /** Custom position on the page associated to the CUSTOM label placement. - @since LibreOffice 6.5 + @since LibreOffice 7.0 */ [optional, maybevoid, property] ::com::sun::star::chart2::RelativePosition CustomLabelPosition; }; |