Working JavaScript charts
[gpl/argeo-suite.git] / js / src / graph / export-package.js
diff --git a/js/src/graph/export-package.js b/js/src/graph/export-package.js
deleted file mode 100644 (file)
index ec8b4ee..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-import TestGraph from './TestGraph.js';
-//import { rectY, binX } from "@observablehq/plot";
-
-// PSEUDO PACKAGE
-if (typeof globalThis.argeo === 'undefined')
-       globalThis.argeo = {};
-if (typeof globalThis.argeo.app === 'undefined')
-       globalThis.argeo.app = {};
-if (typeof globalThis.argeo.app.graph === 'undefined')
-       globalThis.argeo.app.graph = {};
-
-// PUBLIC CLASSES
-globalThis.argeo.app.graph.TestGraph = TestGraph;
-
-//const plot = rectY({ length: 10000 }, binX({ y: "count" }, { x: Math.random })).plot();
-//const div = document.querySelector("#myplot");
-//div.append(plot);
-
-"use strict";