#10358 Regression Analysis: Allow selecting subset of time range for regression

This commit is contained in:
Kristian Bendiksen
2023-06-07 11:23:42 +02:00
parent 5bd492dc56
commit f1794abff2
9 changed files with 188 additions and 37 deletions

View File

@@ -150,6 +150,7 @@ RimSummaryTimeAxisProperties::RimSummaryTimeAxisProperties()
CAF_PDM_InitFieldNoDefault( &m_annotations, "Annotations", "" );
m_annotations.uiCapability()->setUiTreeHidden( true );
m_annotations.uiCapability()->setUiTreeChildrenHidden( true );
}
//--------------------------------------------------------------------------------------------------
@@ -758,6 +759,14 @@ void RimSummaryTimeAxisProperties::removeAllAnnotations()
m_annotations.deleteChildren();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimSummaryTimeAxisProperties::removeAnnotation( RimTimeAxisAnnotation* annotation )
{
m_annotations.removeChild( annotation );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------