https://bugs.documentfoundation.org/show_bug.cgi?id=114181
--- Comment #4 from Adam Kovacs <[email protected]> ---
I write my results so far, maybe if somebody can continue to fix this bug.
In this file:
https://opengrok.libreoffice.org/xref/core/oox/source/drawingml/chart/typegroupconverter.cxx#562
If you write this:
if (nAxesSetIdx == 0)
nAxesSetIdx = 1;
else //if (nAxesSetIdx == 1)
nAxesSetIdx = 0;
Right before this line:
aSeriesProp.setProperty( PROP_AttachedAxisIndex, nAxesSetIdx );
Then the problem seems solved, but the Y axes will be switched and the export
will be crap.
In this file:
https://opengrok.libreoffice.org/xref/core/oox/source/drawingml/chart/axisconverter.cxx#377
If you write this:
if (nAxesSetIdx == 0)
nAxesSetIdx = 1;
else if (nAxesSetIdx == 1)
nAxesSetIdx = 0;
Right before this line:
rxCoordSystem->setAxisByDimension( nAxisIdx, xAxis, nAxesSetIdx );
The Y axes will be switched and the appereance will be correct, but the export
still will be crap.
The export about this is maybe here:
https://opengrok.libreoffice.org/xref/core/oox/source/export/chartexport.cxx#227
And here is some related stuff also:
https://opengrok.libreoffice.org/xref/core/chart2/source/view/axes/VCartesianAxis.cxx#1059
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs