error bars
| 170 | |
| 171 | // error bars |
| 172 | ErrorBar* BarPlot::errorBarAt(int index) const { |
| 173 | Q_D(const BarPlot); |
| 174 | if (index < d->errorBars.size()) |
| 175 | return d->errorBars.at(index); |
| 176 | else |
| 177 | return nullptr; |
| 178 | } |
| 179 | |
| 180 | double BarPlot::minimum(const Dimension dim) const { |
| 181 | Q_D(const BarPlot); |
no test coverage detected