diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2020-11-16 14:44:45 +0100 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-11-17 11:10:09 +0100 |
commit | 4930749294475cc28afd06cd11fdf56a157ad9ce (patch) | |
tree | aaf87283eb47c7e44cd34361c8f5408d41f50456 /offapi | |
parent | 1724b7a2cb16336b2c6e066504708396b8ecfa32 (diff) |
tdf#138204 Chart OOXML Import: doesn't show placeholder
for CELLRANGE data label field type. Add CELLRANGE to enum
com::sun::star::chart2::DataPointCustomLabelFieldType, like
we do at CELLREF, while both of them are not implemented, see
commit 790f9abeb1a1167ad5ab84c5fb855b36669c125b
(tdf#114821 import complex data labels in bar chart).
Regression from commit: 0d2340998415fb4b2f794054c62ef61c83e32155
(tdf#136061 Chart ODF/OOXML: fix missing custom labels)
Change-Id: I8e0f4ca9db6e613a190cbda31504a7542fc13a86
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105934
Tested-by: László Németh <nemeth@numbertext.org>
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart2/DataPointCustomLabelFieldType.idl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/offapi/com/sun/star/chart2/DataPointCustomLabelFieldType.idl b/offapi/com/sun/star/chart2/DataPointCustomLabelFieldType.idl index 05c26a738684..f5ea79ca68d5 100644 --- a/offapi/com/sun/star/chart2/DataPointCustomLabelFieldType.idl +++ b/offapi/com/sun/star/chart2/DataPointCustomLabelFieldType.idl @@ -24,7 +24,8 @@ enum DataPointCustomLabelFieldType CATEGORYNAME, CELLREF, NEWLINE, - PERCENTAGE + PERCENTAGE, + CELLRANGE }; }; }; }; }; |