diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2020-01-27 11:19:16 +0100 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-01-29 12:01:40 +0100 |
commit | 6df2d48b53946e518a9689c3ea020250652d56be (patch) | |
tree | b0ea1410dd42bee41d28f6076a3c75ba2d1b0114 /oox | |
parent | 9600a5abc93406bd966507edda3f66ef599fc8d7 (diff) |
tdf#130237 OOXML chart export: fix incomplete 3D area chart
by exporting its z-axis properties into <serAx> element.
Data series of 3D area charts were “transparent” or incomplete
opening with MSO, because we exported z-axis as a category axis.
Change-Id: If7d8c15aa738cc44c736cd37d2be30d0eb15538f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87506
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 46dc2285f839..8debc8d047c3 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -2756,7 +2756,7 @@ void ChartExport::exportAxis(const AxisIdPair& rAxisIdPair) nAxisType = XML_valAx; else if( eChartType == chart::TYPEID_STOCK ) nAxisType = XML_dateAx; - else if( eChartType == chart::TYPEID_BAR ) + else if( eChartType == chart::TYPEID_BAR || eChartType == chart::TYPEID_AREA ) nAxisType = XML_serAx; // FIXME: axPos, need to check axis direction sAxPos = "b"; |