| 12 | namespace matplot { |
| 13 | |
| 14 | histogram::histogram(class axes_type *parent) : axes_object(parent) { |
| 15 | if (parent_->y_axis().limits_mode_auto()) { |
| 16 | parent_->y_axis().limits({0, inf}); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | histogram::histogram(class axes_type *parent, |
| 21 | const std::vector<double> &data, size_t n_bins, |
nothing calls this directly
no test coverage detected