! Returns a list of all the graphs that have this axis as key or value axis. \see plottables, items */
| 9412 | \see plottables, items |
| 9413 | */ |
| 9414 | QList<QCPGraph*> QCPAxis::graphs() const |
| 9415 | { |
| 9416 | QList<QCPGraph*> result; |
| 9417 | if (!mParentPlot) return result; |
| 9418 | |
| 9419 | foreach (QCPGraph *graph, mParentPlot->mGraphs) |
| 9420 | { |
| 9421 | if (graph->keyAxis() == this || graph->valueAxis() == this) |
| 9422 | result.append(graph); |
| 9423 | } |
| 9424 | return result; |
| 9425 | } |
| 9426 | |
| 9427 | /*! |
| 9428 | Returns a list of all the items that are associated with this axis. An item is considered |