summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-12-18 22:14:59 +0100
committerEike Rathke <erack@redhat.com>2018-01-16 13:11:40 +0100
commiteca80d17b9a7d2d8e15c74965de0c78674b00502 (patch)
tree1ac1e967c14f5aafd0c01f2ee9d9c8b968e61bbe /oox
parent64844082ef29963b8d8c1cd47992d989dafb4ced (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/46815 Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'oox')
-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 e95835ccffbb..2ffb03fa7ba4 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -2122,7 +2122,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)