! update color and size of all error-bar. */
| 342 | update color and size of all error-bar. |
| 343 | */ |
| 344 | void DatapickerPointPrivate::retransformErrorBar() { |
| 345 | for (auto* item : q->m_errorBarItemList) { |
| 346 | if (item) { |
| 347 | item->setBrush(errorBarBrush); |
| 348 | item->setPen(errorBarPen); |
| 349 | item->setRectSize(errorBarSize); |
| 350 | } |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | void DatapickerPointPrivate::updateProperties() { |
| 355 | auto* curve = dynamic_cast<DatapickerCurve*>(q->parentAspect()); |
nothing calls this directly
no test coverage detected