Add new frequency graph

This commit is contained in:
Lewis Moten
2024-05-12 04:12:28 -04:00
parent 51a51d7e96
commit 015dd3eae3
8 changed files with 387 additions and 64 deletions

View File

@@ -195,6 +195,10 @@ class BasePanel {
const element = this.getElement(id);
element.innerHTML = html;
}
getNumberById = id => {
const value = this.getValueById(id);
return parseFloat(value);
}
getValueById = (id) => {
const element = this.getElement(id);
switch(element.tagName) {