| 723 | } |
| 724 | |
| 725 | QString WorksheetElement::coordinateSystemInfo(const int index) const { |
| 726 | Q_D(const WorksheetElement); |
| 727 | if (d->m_plot) |
| 728 | return d->m_plot->coordinateSystem(index)->info(); |
| 729 | |
| 730 | return {}; |
| 731 | } |
| 732 | |
| 733 | bool WorksheetElement::isHovered() const { |
| 734 | Q_D(const WorksheetElement); |
no test coverage detected