Remove legends from Correlation plots

This commit is contained in:
Gaute Lindkvist
2020-05-05 15:09:09 +02:00
parent 3240c24f2c
commit 0bf3ed91f0

View File

@@ -56,12 +56,17 @@ RimCorrelationReportPlot::RimCorrelationReportPlot()
setAsPlotMdiWindow();
m_showWindow = true;
m_showWindow = true;
m_showPlotLegends = false;
m_correlationMatrixPlot = new RimCorrelationMatrixPlot;
m_correlationMatrixPlot->setLegendsVisible( false );
m_correlationMatrixPlot->setColSpan( RimPlot::TWO );
m_correlationMatrixPlot->setRowSpan( RimPlot::TWO );
m_correlationPlot = new RimCorrelationPlot;
m_correlationPlot = new RimCorrelationPlot;
m_correlationPlot->setLegendsVisible( false );
m_parameterResultCrossPlot = new RimParameterResultCrossPlot;
m_parameterResultCrossPlot->setLegendsVisible( false );
this->connect( m_correlationMatrixPlot(),
SIGNAL( matrixCellSelected( const EnsembleParameter&, const RiaSummaryCurveDefinition& ) ),