Skip to content

Commit

Permalink
improve: milliseconds in the second line on graph
Browse files Browse the repository at this point in the history
  • Loading branch information
luftaquila committed Oct 24, 2024
1 parent 116093d commit 446ddf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viewer/web/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ function init_chart() {
}
],
axes: [{
values: (self, ticks) => ticks.map(rawValue => new Date(rawValue).format("HH:MM:ss.l")),
values: (self, ticks) => ticks.map(rawValue => new Date(rawValue).format("HH:MM:ss\nl")),
}, {
scale: "A",
stroke: "dodgerblue",
Expand Down

0 comments on commit 446ddf9

Please sign in to comment.