From dcfe1999826d69f9011848d3c6758be33c2218ab Mon Sep 17 00:00:00 2001 From: jrtechs Date: Sun, 20 Jan 2019 20:06:45 -0500 Subject: [PATCH] Created simple web page which prompts user to load a JSON file and it graphs it using visjs. --- graphing/basicGraph.html | 92 ++++++++++++++++++++++++++++++++++++++++ graphing/ex.json | 1 + 2 files changed, 93 insertions(+) create mode 100644 graphing/basicGraph.html create mode 100644 graphing/ex.json diff --git a/graphing/basicGraph.html b/graphing/basicGraph.html new file mode 100644 index 0000000..e75c3fc --- /dev/null +++ b/graphing/basicGraph.html @@ -0,0 +1,92 @@ + + + + Graph2d | Performance + + + + + + + + + + + + +
+ +Click the button then choose a file to graph. + +

+
+
+
+
+ +
+ + + diff --git a/graphing/ex.json b/graphing/ex.json new file mode 100644 index 0000000..6615c8e --- /dev/null +++ b/graphing/ex.json @@ -0,0 +1 @@ +[{"x": "2014-06-1", "y": -6},{"x": "2014-06-11", "y": 0},{"x": "2014-06-12", "y": 25},{"x": "2014-06-13", "y": 30},{"x": "2014-06-14", "y": 10},{"x": "2014-06-15", "y": 15},{"x": "2014-06-16", "y": 30}]