diff options
author | Tünde Tóth <tundeth@gmail.com> | 2019-12-18 09:49:26 +0100 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-01-10 14:21:35 +0100 |
commit | 6e847aa817999ab18acd534f9e6a86685bb268fc (patch) | |
tree | 640176e25db6e79ef4976b9fd6c527b684456c7d /offapi | |
parent | 04b2310aaa094794ceedaa1bb6ff1823a2d29d3e (diff) |
tdf#129859 XLSX import: don't show deleted legend entries
by adding a new feature to disable selected data points
in pie charts.
Fixing also tdf#129858 by deleting the correct legend entry
in bar charts.
Change-Id: Iaaf3a864e9404b8b6d3e2affbb366e18d0f4b43e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86160
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/chart2/DataSeries.idl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/DataSeries.idl b/offapi/com/sun/star/chart2/DataSeries.idl index 357ec4fcd097..fb44d145890a 100644 --- a/offapi/com/sun/star/chart2/DataSeries.idl +++ b/offapi/com/sun/star/chart2/DataSeries.idl @@ -180,6 +180,13 @@ service DataSeries @since LibreOffice 6.3 */ [optional, property] boolean ShowLegendEntry; + + /** A sequence of indexes denoting which data points shouldn't be + shown in the legend. + + @since LibreOffice 6.5 + */ + [optional, property] sequence<long> DeletedLegendEntries; }; } ; // chart2 |