Line + Area chart done, directory re-arranged

This commit is contained in:
bendtherules
2014-03-29 22:10:11 -07:00
parent 24d1afffbd
commit d67252f045
27 changed files with 1056 additions and 233 deletions
+26
View File
@@ -0,0 +1,26 @@
addEventListener("load", load_em_all);
points = [
["0%", "20%"],
["20%", "60%"],
["45%", "45%"],
["55%", "30%"],
["85%", "80%"]
];
function load_em_all()
{
load_html_css_js("html", "area.html",
{
"points": points,
"point_radius": "10px"
});
load_html_css_js("css", "area.css",
{
"points": points,
"point_radius": "5px"
});
}
// load_em_all();
// console.log("Loaded stuffs");