我在我的angular 2+应用程序中嵌入了d3。 我创建了一个像this这样的条形图组件。但我现在想要嵌入this子弹图。有一个带有
的bullet.js文件NULL
我现在要导入此文件,以便我可以从角度组件进行调用。我想在组件中使用类似(function() {
// Chart design based on the recommendations of Stephen Few. Implementation
d3.bullet = function() {
var orient = "left", // TODO top & bottom
reverse = false,
duration = 0,
// [...]
的内容,然后输入类似:
import 'bullet.js'
在我的组件中。是否可以导入bullet.js文件并在我的bulletchart.component.ts中使用?