但是我对它的布局并不满意,于是我在互联网上搜索到了D3.js的Sankey Diagram插件。它看起来真的很不错,我测试了来自的示例代码应用程序。它调用外部JSON文件将其用作节点:在我开发的第一个应用程序中,我从一个多维数组中获取节点is the multidimensional array
//i got this from the example on Google Charts
我的代码: function d3_chart() { // instantiate d3plus .container("#viz") // container DIV to hold the visualization
.data("./extra/acc.csv", {"filetype": "csv"}) // data to use with
到目前为止,我可以构建json并使用呈现数组将其传递给我的js脚本(并在控制台中显示它),但随后我无法调用D3.js:
Uncaught ReferenceError: d3 is not defined或者,既然D3.js在site/all/libraries/d3中,那么有一种通用的方式来调用它吗?