| 107 | } |
| 108 | |
| 109 | std::string vectors::legend_string(std::string_view title) { |
| 110 | return " keyentry with vectors " + |
| 111 | line_spec_.plot_string(line_spec::style_to_plot::plot_line_only, |
| 112 | false) + |
| 113 | " title \"" + escape(title) + "\""; |
| 114 | } |
| 115 | |
| 116 | std::string vectors::data_string() { |
| 117 | std::stringstream ss; |
nothing calls this directly
no test coverage detected