diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-03 17:24:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-07 14:12:17 +0100 |
commit | 10654c038c0bc20fb348be7164e08f3de98718f4 (patch) | |
tree | 6514c61256e12436f9491c98c162777a0f5abd5f /oox | |
parent | cd631a16e49dadd3279f528134962a4376795304 (diff) |
Related: tdf#93676 in msword chart appears with axis positioned between ticks
not on them
Change-Id: I048f86270ee12a38967c81e832619fd5018db6b1
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 3c0fcaf58683..5851e0c00a7d 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -2806,6 +2806,13 @@ void ChartExport::_exportAxis( exportTextProps(xAxisProp); + if (nAxisType == XML_valAx) + { + pFS->singleElement( FSNS( XML_c, XML_crossBetween ), + XML_val, "midCat", + FSEND ); + } + pFS->singleElement( FSNS( XML_c, XML_crossAx ), XML_val, I32S( rAxisIdPair.nCrossAx ), FSEND ); |