Closed kevcal69 closed 7 years ago
You can load it with requirejs, just be sure to use d3js with version 3.5.x And load the css separately.
requirejs.config({ appDir: ".", baseUrl: "js", paths: { 'd3': ['https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.12/d3'], 'd3-tip': ['https://rawgit.com/Caged/d3-tip/v0.6.7/index'], 'd3-timeseries': ['https://rawgit.com/mcaule/d3-timeseries/master/src/d3_timeseries'] }, shim: { /* Set dependencies*/ 'd3-tip': ['d3'], 'd3-timeseries': ['d3', 'd3-tip'] } }); require(['d3-timeseries'], function(d3timeseries) { console.log("Loaded :)"); var chart = d3timeseries() //... })
thanks for replying i already figured it out. do have the options to disable the mini-drawer?
No, there is no options for that
You can load it with requirejs, just be sure to use d3js with version 3.5.x And load the css separately.