time scale on graph should always show hours

pull/123/head
jbruce 2022-12-16 09:44:45 -05:00
rodzic a4a09873d7
commit 71e25b450d
1 zmienionych plików z 8 dodań i 8 usunięć

Wyświetl plik

@ -368,14 +368,14 @@ function saveProfile()
}
function get_tick_size() {
switch(time_scale_profile){
case "s":
return 1;
case "m":
return 60;
case "h":
return 3600;
}
//switch(time_scale_profile){
// case "s":
// return 1;
// case "m":
// return 60;
// case "h":
// return 3600;
// }
return 3600;
}