| 1238 | return rangeFormat(Dimension::X, defaultCoordinateSystem()->index(Dimension::X)); |
| 1239 | } |
| 1240 | RangeT::Format CartesianPlot::yRangeFormatDefault() const { |
| 1241 | return rangeFormat(Dimension::Y, defaultCoordinateSystem()->index(Dimension::Y)); |
| 1242 | } |
| 1243 | RangeT::Format CartesianPlot::rangeFormat(const Dimension dim, const int index) const { |
| 1244 | Q_D(const CartesianPlot); |
| 1245 | if (index < 0 || index > rangeCount(dim)) { |
no test coverage detected