Skip to content

Commit

Permalink
Use plain lines (w/o dots) for training load chart
Browse files Browse the repository at this point in the history
  • Loading branch information
senier committed Dec 1, 2024
1 parent 2d69a70 commit 8d4c695
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/ui/page/training.rs
Original file line number Diff line number Diff line change
Expand Up @@ -532,22 +532,22 @@ pub fn view_charts<Ms>(
&[
common::PlotData {
values: long_term_load_low,
plots: common::plot_line_with_dots(common::COLOR_LONG_TERM_LOAD_BOUNDS),
plots: common::plot_line(common::COLOR_LONG_TERM_LOAD_BOUNDS),
params: common::PlotParams::primary_range(0., 10.),
},
common::PlotData {
values: long_term_load_high,
plots: common::plot_line_with_dots(common::COLOR_LONG_TERM_LOAD_BOUNDS),
plots: common::plot_line(common::COLOR_LONG_TERM_LOAD_BOUNDS),
params: common::PlotParams::primary_range(0., 10.),
},
common::PlotData {
values: long_term_load,
plots: common::plot_line_with_dots(common::COLOR_LONG_TERM_LOAD),
plots: common::plot_line(common::COLOR_LONG_TERM_LOAD),
params: common::PlotParams::primary_range(0., 10.),
},
common::PlotData {
values: short_term_load,
plots: common::plot_line_with_dots(common::COLOR_LOAD),
plots: common::plot_line(common::COLOR_LOAD),
params: common::PlotParams::primary_range(0., 10.),
}
],
Expand Down

0 comments on commit 8d4c695

Please sign in to comment.