| 11 | |
| 12 | namespace matplot { |
| 13 | labels::labels(class axes_type *parent, const std::vector<double> &x, |
| 14 | const std::vector<double> &y, |
| 15 | const std::vector<std::string> &labels, |
| 16 | const std::vector<double> &colors, |
| 17 | const std::vector<double> &sizes) |
| 18 | : axes_object(parent), x_(x), y_(y), labels_(labels), colors_(colors), |
| 19 | sizes_(sizes) {} |
| 20 | |
| 21 | std::string labels::set_variables_string() { |
| 22 | std::string res; |