summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-12-18 22:14:59 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-12-19 20:45:58 +0100
commit423addf8bf0bbc7a2e14faffffcdddd035bc145a (patch)
treea64de5323f47d9df42821c7e51355f70dec02d10
parent3fb74dbbe2ccce8daf83a189fe8bd567ac29259b (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> (cherry picked from commit 1252f32496193e8ed532de744db31413768b8efa) Reviewed-on: https://gerrit.libreoffice.org/46803
-rw-r--r--oox/source/export/chartexport.cxx2
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)