(#396) Using axes on the top and left side

This commit is contained in:
Pål Hagen
2015-08-31 12:34:08 +02:00
parent e4c68f0d1c
commit 991f31a44f

View File

@@ -64,4 +64,9 @@ void RiuWellLogTracePlot::setDefaults()
QPen gridPen(Qt::SolidLine);
gridPen.setColor(Qt::lightGray);
m_grid->setPen(gridPen);
enableAxis(QwtPlot::xTop, true);
enableAxis(QwtPlot::yLeft, true);
enableAxis(QwtPlot::xBottom, false);
enableAxis(QwtPlot::yRight, false);
}