Setter methods for grid lines, plot title visibility and tick intervals

* Allows us to set them programatically.
This commit is contained in:
Gaute Lindkvist
2018-06-29 11:41:08 +02:00
parent e39a34cd0d
commit ec63f0c28e
4 changed files with 49 additions and 1 deletions

View File

@@ -855,6 +855,14 @@ bool RimWellLogPlot::isPlotTitleVisible() const
return m_showTitleInPlot();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellLogPlot::setPlotTitleVisible(bool visible)
{
m_showTitleInPlot = visible;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
@@ -879,6 +887,14 @@ bool RimWellLogPlot::areTrackLegendsHorizontal() const
return m_trackLegendsHorizontal;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellLogPlot::setTrackLegendsHorizontal(bool horizontal)
{
m_trackLegendsHorizontal = horizontal;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------