https://bugs.documentfoundation.org/show_bug.cgi?id=114181

--- Comment #6 from Adam Kovacs <[email protected]> ---
If I write in this file:
https://opengrok.libreoffice.org/xref/core/chart2/source/view/axes/VCartesianAxis.cxx#1194

This:
if( m_nDimensionIndex==0 ) //x-axis
fCrossesOtherAxis = fMinY;

Instead of this:

if( m_nDimensionIndex==0 ) //x-axis
{
if( fCrossesOtherAxis < fMinY )
fCrossesOtherAxis = fMinY;
else if( fCrossesOtherAxis > fMaxY )
fCrossesOtherAxis = fMaxY;

The problem seems solved.

-- 
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

Reply via email to