[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - oox/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Wed Sep 21 09:31:33 UTC 2016
oox/source/export/chartexport.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 8a2781dde395fc45b943daf5e238ba98276bd405
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Tue Sep 20 12:00:01 2016 +0200
tdf#96662, only use the crossBetween="midCat" for line and scatter chart
Change-Id: Id2be263daf2c5a9f2d69ed50b79ac029143f02ca
Reviewed-on: https://gerrit.libreoffice.org/29092
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index 3b79940..5d37352 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -2864,7 +2864,8 @@ void ChartExport::_exportAxis(
// category axis, so we ideally need an algorithm that decides
// when to map the crossing to the tick mark and when to the
// middle of the category
- if (nAxisType == XML_valAx)
+ sal_Int32 nChartType = getChartType();
+ if (nAxisType == XML_valAx && (nChartType == chart::TYPEID_LINE || nChartType == chart::TYPEID_SCATTER))
{
pFS->singleElement( FSNS( XML_c, XML_crossBetween ),
XML_val, "midCat",
More information about the Libreoffice-commits
mailing list