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 authored and treiher committed Dec 3, 2024
1 parent 16b5123 commit 02b5c4b
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
@@ -533,22 +533,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.),
}
],

0 comments on commit 02b5c4b

Please sign in to comment.