diff --git a/ApplicationCode/ProjectDataModel/CorrelationPlots/RimCorrelationPlot.cpp b/ApplicationCode/ProjectDataModel/CorrelationPlots/RimCorrelationPlot.cpp index 3238647ea8..68a99139ed 100644 --- a/ApplicationCode/ProjectDataModel/CorrelationPlots/RimCorrelationPlot.cpp +++ b/ApplicationCode/ProjectDataModel/CorrelationPlots/RimCorrelationPlot.cpp @@ -181,10 +181,12 @@ void RimCorrelationPlot::updateAxes() m_plotWidget->setAxisFontsAndAlignment( QwtPlot::xBottom, 11, 11, false, Qt::AlignCenter ); if ( m_showAbsoluteValues ) { + m_plotWidget->setAxisTitleText( QwtPlot::xBottom, "Pearson Correlation Coefficient ABS" ); m_plotWidget->setAxisRange( QwtPlot::xBottom, 0.0, 1.0 ); } else { + m_plotWidget->setAxisTitleText( QwtPlot::xBottom, "Pearson Correlation Coefficient" ); m_plotWidget->setAxisRange( QwtPlot::xBottom, -1.0, 1.0 ); } }