diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-12-18 22:14:59 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-12-19 17:01:52 +0100 |
commit | 1252f32496193e8ed532de744db31413768b8efa (patch) | |
tree | c0da8583df7fbc125d4c62ba3963e106bab2c509 | |
parent | fde38e3af0f2e6c909050c74f00adf03da1c9aea (diff) |
don't export category info to bubble charts, tdf#103988
Change-Id: Ic2ecd959841172db3f4016b4a1ba667238c6c508
Reviewed-on: https://gerrit.libreoffice.org/46749
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r-- | oox/source/export/chartexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 1ea6ab3c1550..598b9e302a4a 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -1975,7 +1975,7 @@ void ChartExport::exportSeries( const Reference<chart2::XChartType>& xChartType, } // export categories - if( eChartType != chart::TYPEID_SCATTER && mxCategoriesValues.is() ) + if( eChartType != chart::TYPEID_SCATTER && eChartType != chart::TYPEID_BUBBLE && mxCategoriesValues.is() ) exportSeriesCategory( mxCategoriesValues ); if( (eChartType == chart::TYPEID_SCATTER) |