<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILESAVE XLSX combined chart (Column and Line) X category axis crosses the Y axis at the wrong place and the Y axis major grid disappears."
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=114181#c6">Comment # 6</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILESAVE XLSX combined chart (Column and Line) X category axis crosses the Y axis at the wrong place and the Y axis major grid disappears."
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=114181">bug 114181</a>
              from <span class="vcard"><a class="email" href="mailto:christo161@gmail.com" title="Adam Kovacs <christo161@gmail.com>"> <span class="fn">Adam Kovacs</span></a>
</span></b>
        <pre>If I write in this file:
<a href="https://opengrok.libreoffice.org/xref/core/chart2/source/view/axes/VCartesianAxis.cxx#1194">https://opengrok.libreoffice.org/xref/core/chart2/source/view/axes/VCartesianAxis.cxx#1194</a>

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.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>