diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2019-02-14 16:30:43 +0100 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2019-02-15 07:30:09 +0100 |
commit | b89f239aa9d3d4660380bbd0c893aecde0986032 (patch) | |
tree | 4e23baecb86ea7da798cd789715ef09e333ad085 /oox/source | |
parent | 153c40adacbe1b6b4e8c205f02afabf22fe3c0bf (diff) |
tdf#97575 Chart OOXML: Export ShapeProps of Error Bars
Export the shapeProps (fillstyle, linestyle, linewidth,
linecolor etc.) of the Error Bars to OOXML.
Change-Id: Iff74fa463fdd0fb6ed95e4d1bf0d3e906349860c
Reviewed-on: https://gerrit.libreoffice.org/67825
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'oox/source')
-rw-r--r-- | oox/source/export/chartexport.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index b1c437b53dfe..47c30b1ba569 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -3885,6 +3885,8 @@ void ChartExport::exportErrorBar(const Reference< XPropertySet>& xErrorBarProps, FSEND ); } + exportShapeProps( xErrorBarProps ); + pFS->endElement( FSNS( XML_c, XML_errBars) ); } |