diff options
author | Tünde Tóth <toth.tunde@nisz.hu> | 2020-08-03 09:12:14 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-08-07 11:54:24 +0200 |
commit | bcda268cde1f8408c2066ce985acedfce3e3bc2e (patch) | |
tree | 4ad77a796883cca715409171c7867eedf8f3af66 /oox | |
parent | e520a4f988bf0ff81e75e37588182af92fed7631 (diff) |
tdf#134977 Chart OOXML: fix import of custom data label
Use the data series properties for the default properties
of the custom data labels.
Change-Id: I651fa030276dfdec13b5801c0188bfd07c498b49
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99987
Tested-by: Jenkins
Tested-by: László Németh <nemeth@numbertext.org>
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/chart/seriesconverter.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oox/source/drawingml/chart/seriesconverter.cxx b/oox/source/drawingml/chart/seriesconverter.cxx index b34bc355ca4d..6e75fc89beab 100644 --- a/oox/source/drawingml/chart/seriesconverter.cxx +++ b/oox/source/drawingml/chart/seriesconverter.cxx @@ -315,6 +315,7 @@ void DataLabelConverter::convertFromModel( const Reference< XDataSeries >& rxDat // Store properties oox::PropertySet aPropertySet( xCustomLabel ); + convertTextProperty( aPropertySet, getFormatter(), mrModel.mxText->mxTextBody ); pRun->getTextCharacterProperties().pushToPropSet( aPropertySet, getFilter() ); TextField* pField = nullptr; |