Angular8 引入百度 Echarts,進行圖表分析

波波你行發表於2019-11-27

Angular8 引入百度Echarts,進行圖表分析

原文地址:傳送門

最近突發奇想,想自己做一個理財分析記錄的網頁,主要給自己記賬,然後想到了把每天,每週的消費用圖示分析出來,於是就需要用到百度的echarts圖示外掛,talk is cheep, show me the code。

1. npm 安裝ngx-echarts及相關的依賴

npm install echarts -S
npm install ngx-echarts -S
npm install @types/echarts -D

2. 新增js引導檔案

{
  "scripts": [
    "../node_modules/echarts/dist/echarts.min.js"  // or echarts.js for debug purpose
  ],
}

3. AppModule引入NgxEchartsModule

這裡有個坑,記得在你呼叫了echarts的相關模組的Module裡面引入NgxEchartsModule,不然會報錯:Template parse errors: Can't bind to 'options' since it isn't a known property of 'div'.所以切記

import { NgxEchartsModule } from 'ngx-echarts';

@NgModule({
  imports: [
    ...,
    NgxEchartsModule
  ],
  ...
})
export class AppModule { }

4. 使用echarts

  • html
    <div echarts [options]="chartOption" class="demo-chart"></div>
  • scss
    .demo-chart {
    height: 400px;
    }
  • component
    import { EChartOption } from 'echarts';
    chartOption: EChartOption = {
    xAxis: {
    type: 'category',
    data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
    type: 'value'
    },
    series: [{
    data: [820, 932, 901, 934, 1290, 1330, 1320],
    type: 'line'
    }]
    }

    5. 參考網站

  • https://www.npmjs.com/package/ngx-echarts
  • angular echarts 線上模板
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章