当前位置: 首页 > 工具软件 > ngx-charts > 使用案例 >

ngx-echarts的使用

壤驷阳波
2023-12-01

ngx-echarts相关网址

  1. ngx-echarts地址
  2. echarts4.0+百度官网
  3. ngx-echarts github地址

安装 v2.2.0版本

  • v3.1.0 for Angular >= 6

  • v2.2.0 for Angular < 6

    目前,我们使用的是angular5,因此我们安装ngx-echarts@2.2.0,echarts版本选择4.1.0。

npm install echarts@4.1.0 --save
npm install ngx-echarts@2.2.0 --save
复制代码

引入

  1. 在angular-cli.json中引入echarts

     {
          "name": "ebiz-workspace",
          "root": "apps/ebiz-workspace/src",
          "outDir": "dist/apps/ebiz-workspace",
    		...
          "scripts": [
            "../../../node_modules/echarts/dist/echarts.min.js"
          ],
         	...
        },
    复制代码
  2. 在module中引入

    import { NgxEchartsModule } from 'ngx-echarts';
    @NgModule({
      imports: [
      ...
        NgxEchartsModule,
        ...
      ]
      ...
      })
    复制代码

转载于:https://juejin.im/post/5b751387f265da27fe3f2a07

 类似资料: