Plot curve. Support for setting Z order on curve objects

This commit is contained in:
Bjørn Erik Jensen
2017-10-17 15:59:05 +02:00
parent 339c46d39c
commit 646c4aa9d7
3 changed files with 16 additions and 0 deletions

View File

@@ -539,6 +539,17 @@ void RimPlotCurve::showLegend(bool show)
updateLegendEntryVisibilityNoPlotUpdate();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimPlotCurve::setZOrder(double z)
{
if (m_qwtPlotCurve != nullptr)
{
m_qwtPlotCurve->setZ(z);
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------