! \param axisId Axis \return Scale engine for a specific axis */
| 188 | \return Scale engine for a specific axis |
| 189 | */ |
| 190 | QwtScaleEngine* QwtPlot::axisScaleEngine( QwtAxisId axisId ) |
| 191 | { |
| 192 | if ( isAxisValid( axisId ) ) |
| 193 | return m_scaleData->axisData( axisId ).scaleEngine; |
| 194 | else |
| 195 | return NULL; |
| 196 | } |
| 197 | |
| 198 | /*! |
| 199 | \param axisId Axis |
no test coverage detected