| 173 | * returns the number of index values used for x. |
| 174 | */ |
| 175 | int RunChart::xIndexCount() const { |
| 176 | Q_D(const RunChart); |
| 177 | if (!d->dataColumn) |
| 178 | return 0; |
| 179 | |
| 180 | return d->dataColumn->rowCount(); |
| 181 | } |
| 182 | |
| 183 | // lines |
| 184 | Line* RunChart::dataLine() const { |
no test coverage detected