! Checks if an axis is valid \param axisId axis \return \c true if the specified axis exists, otherwise \c false \note This method is equivalent to QwtAxis::isValid( axisId ) and simply checks if axisId is one of the values of QwtAxis::Position. It is a placeholder for future releases, where it will be possible to have a customizable number of axes ( multia
| 130 | of axes ( multiaxes branch ) at each side. |
| 131 | */ |
| 132 | bool QwtPlot::isAxisValid( QwtAxisId axisId ) const |
| 133 | { |
| 134 | return QwtAxis::isValid( axisId ); |
| 135 | } |
| 136 | |
| 137 | /*! |
| 138 | \return Scale widget of the specified axis, or NULL if axisId is invalid. |
no outgoing calls
no test coverage detected