| 1497 | } |
| 1498 | |
| 1499 | void AxisDock::labelsFontColorChanged(const QColor& color) { |
| 1500 | CONDITIONAL_LOCK_RETURN; |
| 1501 | |
| 1502 | for (auto* axis : m_axesList) |
| 1503 | axis->setLabelsColor(color); |
| 1504 | |
| 1505 | updateAxisColor(); |
| 1506 | } |
| 1507 | |
| 1508 | void AxisDock::labelsBackgroundTypeChanged(int index) { |
| 1509 | auto type = Axis::LabelsBackgroundType(index); |
nothing calls this directly
no test coverage detected