inherits documentation from base class */
| 27437 | |
| 27438 | /* inherits documentation from base class */ |
| 27439 | int QCPErrorBars::findEnd(double sortKey, bool expandedRange) const |
| 27440 | { |
| 27441 | if (mDataPlottable) |
| 27442 | { |
| 27443 | if (mDataContainer->isEmpty()) |
| 27444 | return 0; |
| 27445 | int endIndex = mDataPlottable->interface1D()->findEnd(sortKey, expandedRange); |
| 27446 | if (endIndex > mDataContainer->size()) |
| 27447 | endIndex = mDataContainer->size(); |
| 27448 | return endIndex; |
| 27449 | } else |
| 27450 | qDebug() << Q_FUNC_INFO << "no data plottable set"; |
| 27451 | return 0; |
| 27452 | } |
| 27453 | |
| 27454 | /* inherits documentation from base class */ |
| 27455 | double QCPErrorBars::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const |
no test coverage detected