! \internal Returns the pixel position of the anchor with Id \a anchorId. This function must be reimplemented in item subclasses if they want to provide anchors (QCPItemAnchor). For example, if the item has two anchors with id 0 and 1, this function takes one of these anchor ids and returns the respective pixel points of the specified anchor. \see createAnchor */
| 13168 | \see createAnchor |
| 13169 | */ |
| 13170 | QPointF QCPAbstractItem::anchorPixelPosition(int anchorId) const |
| 13171 | { |
| 13172 | qDebug() << Q_FUNC_INFO << "called on item which shouldn't have any anchors (this method not reimplemented). anchorId" << anchorId; |
| 13173 | return {}; |
| 13174 | } |
| 13175 | |
| 13176 | /*! \internal |
| 13177 |
no test coverage detected