mirror of
				https://github.com/OPM/ResInsight.git
				synced 2025-02-25 18:55:39 -06:00 
			
		
		
		
	Add ABS tag to Correlation plot x-axis when using absolute values
This commit is contained in:
		@@ -181,10 +181,12 @@ void RimCorrelationPlot::updateAxes()
 | 
				
			|||||||
    m_plotWidget->setAxisFontsAndAlignment( QwtPlot::xBottom, 11, 11, false, Qt::AlignCenter );
 | 
					    m_plotWidget->setAxisFontsAndAlignment( QwtPlot::xBottom, 11, 11, false, Qt::AlignCenter );
 | 
				
			||||||
    if ( m_showAbsoluteValues )
 | 
					    if ( m_showAbsoluteValues )
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
					        m_plotWidget->setAxisTitleText( QwtPlot::xBottom, "Pearson Correlation Coefficient ABS" );
 | 
				
			||||||
        m_plotWidget->setAxisRange( QwtPlot::xBottom, 0.0, 1.0 );
 | 
					        m_plotWidget->setAxisRange( QwtPlot::xBottom, 0.0, 1.0 );
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    else
 | 
					    else
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
					        m_plotWidget->setAxisTitleText( QwtPlot::xBottom, "Pearson Correlation Coefficient" );
 | 
				
			||||||
        m_plotWidget->setAxisRange( QwtPlot::xBottom, -1.0, 1.0 );
 | 
					        m_plotWidget->setAxisRange( QwtPlot::xBottom, -1.0, 1.0 );
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user