median line
| 348 | |
| 349 | // median line |
| 350 | Line* BoxPlot::medianLineAt(int index) const { |
| 351 | Q_D(const BoxPlot); |
| 352 | if (index < d->medianLines.size()) |
| 353 | return d->medianLines.at(index); |
| 354 | else |
| 355 | return nullptr; |
| 356 | } |
| 357 | |
| 358 | // markers |
| 359 | Symbol* BoxPlot::symbolMean() const { |
no test coverage detected