mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#8425 Summary Multi Plots: Add grouping on wells, groups, ...
* #8425 Multi Graph : Support grouping on object name * #8425 Multi Graph : Improve creation of new graphs * #8425 Multi Graph : Improve default tick mark count * Handle history and non history as identical headers * #8425 Multi Graph : Increase space below a graph
This commit is contained in:
@@ -621,6 +621,20 @@ void RiuMultiPlotPage::reinsertPlotWidgets()
|
||||
plotWidgets[visibleIndex]->setAxisTitleEnabled( QwtPlot::yLeft, showYAxis( row, column ) );
|
||||
plotWidgets[visibleIndex]->setAxesFontsAndAlignment( m_axisTitleFontSize, m_axisValueFontSize );
|
||||
|
||||
{
|
||||
int left = 0;
|
||||
int top = 0;
|
||||
int right = 0;
|
||||
int bot = 0;
|
||||
|
||||
plotWidgets[visibleIndex]->getContentsMargins( &left, &top, &right, &bot );
|
||||
bot = 40;
|
||||
|
||||
// Adjust the space below a graph to make sure the heading of the row below is closest to the
|
||||
// corresponding graph
|
||||
plotWidgets[visibleIndex]->setContentsMargins( left, top, right, bot );
|
||||
}
|
||||
|
||||
plotWidgets[visibleIndex]->show();
|
||||
|
||||
if ( legends[visibleIndex] )
|
||||
|
||||
Reference in New Issue
Block a user