diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2019-08-06 15:22:30 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2019-08-07 14:23:50 +0200 |
commit | 80386c73e172975572f265018333c6231a6b3b22 (patch) | |
tree | aa9f38d18d952dfce69f67c3026b6f43c5c8d17c /oox | |
parent | 5bb6c1bdef28de0e30326b13161f681e1d58a032 (diff) |
tdf#125337 Chart DOCX Import: fix missing empty data series columns
Create an empty column for a data series with NAN values, ie. where
only "ptCount" was defined without explicit data. Also data series
appear in the right order.
Change-Id: I4eac94c2b9f34c84c4c19e4717cafbd440b20087
Reviewed-on: https://gerrit.libreoffice.org/77026
Reviewed-by: László Németh <nemeth@numbertext.org>
Tested-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/chart/chartconverter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/chartconverter.cxx b/oox/source/drawingml/chart/chartconverter.cxx index 538f9956abc7..739092d72b02 100644 --- a/oox/source/drawingml/chart/chartconverter.cxx +++ b/oox/source/drawingml/chart/chartconverter.cxx @@ -124,7 +124,7 @@ Reference< XDataSequence > ChartConverter::createDataSequence( if( rxDataProvider.is() ) { OUString aRangeRep; - if( !rDataSeq.maData.empty() ) try + if( !rDataSeq.maData.empty() || (rRole == "values-y" && rDataSeq.mnPointCount > 0) ) try { // create a single-row array from constant source data // (multiple levels in the case of complex categories) |