Returns the axis label, which is a name or description.
| 81 | |
| 82 | /// Returns the axis label, which is a name or description. |
| 83 | boost::string_view label() const noexcept { return label_; } |
| 84 | /// Change the label of an axis. |
| 85 | void label(boost::string_view label) { label_.assign(label.begin(), label.end()); } |
| 86 |