diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2019-06-28 12:30:19 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2019-06-28 13:51:43 +0200 |
commit | 0970a47ae926bb47458b846e9dc8ff6f3607250c (patch) | |
tree | 1a1c9222d8e288494183cadf8fe8ff81d68116bf /include/oox | |
parent | 1ec6de1cff6a5f2c15aa85c12c6e327282ca8703 (diff) |
tdf#126115 Chart OOXML Export: fix individual marker
Export linechart custom (individual) datapoint marker
settings into a <dPt> tag, as the OOXML Standard requires.
Change-Id: I939196c9ea6e091ac9dadb4d62dd85d5408d599c
Reviewed-on: https://gerrit.libreoffice.org/74837
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/export/chartexport.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oox/export/chartexport.hxx b/include/oox/export/chartexport.hxx index b39b3f52b455..4716099dd8df 100644 --- a/include/oox/export/chartexport.hxx +++ b/include/oox/export/chartexport.hxx @@ -182,7 +182,7 @@ private: void exportDataLabels( const css::uno::Reference<css::chart2::XDataSeries>& xSeries, sal_Int32 nSeriesLength, sal_Int32 eChartType ); void exportGrouping( bool isBar = false ); void exportTrendlines( const css::uno::Reference< css::chart2::XDataSeries >& xSeries ); - void exportMarker( const css::uno::Reference< css::chart2::XDataSeries >& xSeries ); + void exportMarker( const css::uno::Reference< css::beans::XPropertySet >& xPropSet ); void exportSmooth(); void exportFirstSliceAng(); |