得到错误" c3"没有定义no-undef

时间:2017-05-03 10:52:56

标签: javascript angularjs ecmascript-6 c3.js

我尝试使用ES6在角度js中编写自定义条形图指令。我使用bower install c3 --save安装了c3库。当我运行gulp服务时,我得到了错误" c3"没有定义no-undef。以下是我的代码 -

{{1}}

1 个答案:

答案 0 :(得分:1)

如果直接安装c3,它将不会是“角度友好”。我在我的项目中使用c3和es2015(和一个babel transpire)我选择使用c3-angular

安装它:

bower install c3-angular --save

并将其作为依赖项导入:

import 'c3-angular';
let barChartModule = angular.module('barChart', ['gridshore.c3js.chart']);

如果你这样做,你可以在视图中定义图表,这在examples here

中有解释。