| 152 | |
| 153 | // box filling |
| 154 | Background* BarPlot::backgroundAt(int index) const { |
| 155 | Q_D(const BarPlot); |
| 156 | if (index < d->backgrounds.size()) |
| 157 | return d->backgrounds.at(index); |
| 158 | else |
| 159 | return nullptr; |
| 160 | } |
| 161 | |
| 162 | // box border lines |
| 163 | Line* BarPlot::lineAt(int index) const { |
no test coverage detected