trigger drawing screen

This commit is contained in:
2025-07-13 12:35:58 -04:00
parent a02eae32a1
commit 96589039a4
2 changed files with 92 additions and 78 deletions

View File

@@ -1,4 +1,4 @@
import { loadGraph } from './tempgraph.ts';
let timer = 0;
let isRunning = false;
@@ -164,6 +164,7 @@ function exportCSV(): void {
function showGraph(): void {
const graphContainer = document.getElementById("graph-container");
if (graphContainer) {
loadGraph(null);
graphContainer.classList.remove("hidden");
graphContainer.classList.add("graph-display-flex");
}