summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-04-21 13:36:09 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-04-22 05:38:59 +0200
commitc8961a43bd6605f4a06165f31f7a7fbb8ffdb8d0 (patch)
tree353adba635d83a34ea20b3fd2b71746f81ccd26c
parentbadec7478035008f514e0976a94438fe2e32dc40 (diff)
export data labels for all chart types, tdf#90729
Change-Id: I55b9b87a8de2ecee4f1ae3159938bfd2fb3acbaa
-rw-r--r--oox/source/export/chartexport.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index 445c3411cb06..f8a33a87b961 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1820,10 +1820,7 @@ void ChartExport::exportSeries( Reference< chart2::XChartType > xChartType, sal_
exportDataPoints( uno::Reference< beans::XPropertySet >( aSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength );
// export data labels
- // Excel does not like our current data label export
- // for scatter charts
- if( eChartType != chart::TYPEID_SCATTER )
- exportDataLabels(aSeriesSeq[nSeriesIdx], nSeriesLength, eChartType);
+ exportDataLabels(aSeriesSeq[nSeriesIdx], nSeriesLength, eChartType);
exportTrendlines( aSeriesSeq[nSeriesIdx] );