! \internal Returns the margin size for this \a side. It is used if automatic margins is enabled for this \a side (see \ref setAutoMargins). If a minimum margin was set with \ref setMinimumMargins, the returned value will not be smaller than the specified minimum margin. The default implementation just returns the respective manual margin (\ref setMargins) or the minimum margin, wh
| 3566 | minimum margin, whichever is larger. |
| 3567 | */ |
| 3568 | int QCPLayoutElement::calculateAutoMargin(QCP::MarginSide side) |
| 3569 | { |
| 3570 | return qMax(QCP::getMarginValue(mMargins, side), QCP::getMarginValue(mMinimumMargins, side)); |
| 3571 | } |
| 3572 | |
| 3573 | /*! \internal |
| 3574 |
no test coverage detected