Add line styling to in-process AOS plotter
Change-Id: I967cf9f39ae754832e25f24633576a2c571656ae
Signed-off-by: James Kuszmaul <james.kuszmaul@bluerivertech.com>
diff --git a/frc971/analysis/in_process_plotter.h b/frc971/analysis/in_process_plotter.h
index 3d7a037..1c97287 100644
--- a/frc971/analysis/in_process_plotter.h
+++ b/frc971/analysis/in_process_plotter.h
@@ -43,7 +43,7 @@
void AddFigure(std::string_view title = "", double width = 900,
double height = 400);
void AddLine(const std::vector<double> &x, const std::vector<double> &y,
- std::string_view label = "");
+ std::string_view label = "", std::string_view line_style = "*-");
void ShareXAxis(bool share) { share_x_axis_ = share; }
void XLabel(std::string_view label);
void YLabel(std::string_view label);