Experimental support for gantt diagrams

This commit is contained in:
knsv
2015-02-20 19:06:15 +01:00
parent 1b016bd412
commit 2877501ff5
11 changed files with 8742 additions and 160 deletions

15
src/diagrams/gantt/d3.js vendored Normal file
View File

@@ -0,0 +1,15 @@
/* global window */
var d3;
if (require) {
try {
d3 = require("d3");
} catch (e) {}
}
if (!d3) {
d3 = window.d3;
}
module.exports = d3;