#5049 Fix missing axis title for well allocation plots

This commit is contained in:
Gaute Lindkvist 2019-11-19 10:33:18 +01:00
parent 94cc635649
commit ae9575feb2

View File

@ -1093,7 +1093,7 @@ void RimWellLogTrack::loadDataAndUpdate()
if ( wellLogPlot && m_plotWidget ) if ( wellLogPlot && m_plotWidget )
{ {
m_plotWidget->setAxisTitleText( QwtPlot::yLeft, m_xAxisTitle ); m_plotWidget->setAxisTitleText( QwtPlot::xTop, m_xAxisTitle );
m_plotWidget->setAxisTitleText( QwtPlot::yLeft, wellLogPlot->depthAxisTitle() ); m_plotWidget->setAxisTitleText( QwtPlot::yLeft, wellLogPlot->depthAxisTitle() );
} }