我尝试了很多尝试,但是我没有使用angular-cli:1.0.0-beta.15在Angular2 Final版本中使用带有属性intellisense的D3成功使用。
任何成功的尝试或提示或步骤都会有所帮助。
我也尝试过使用d3-ng2-service。
最终导致许多编译错误,缺少类型def。
答案 0 :(得分:0)
我能够在一周前的CLI项目中使用它
npm install d3 --save
npm install @types/d3 --save-dev
//and in your code:
import * as d3 from 'd3';
(根据需要重复其他d3模块,即d3-color
)
你可以看到我正在玩here
的项目