| 122 | } |
| 123 | |
| 124 | std::string parallel_lines::legend_string(std::string_view title) { |
| 125 | return " keyentry " + |
| 126 | line_spec_.plot_string( |
| 127 | line_spec::style_to_plot::plot_line_only) + |
| 128 | " title \"" + escape(title) + "\""; |
| 129 | } |
| 130 | |
| 131 | std::string parallel_lines::data_string() { |
| 132 | // calculate data for jitter |
nothing calls this directly
no test coverage detected