| 270 | const std::string &legend::font_weight() const { return font_weight_; } |
| 271 | |
| 272 | void legend::font_weight(std::string_view font_weight) { |
| 273 | font_weight_ = font_weight; |
| 274 | touch(); |
| 275 | } |
| 276 | |
| 277 | const color_array &legend::text_color() const { return text_color_; } |
| 278 |