概述
最近突发奇想,想自己做一个理财分析记录的网页,主要给自己记账,然后想到了把每天,每周的消费用图标分析出来,于是就需要用到百度的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 在线模板
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。
最后
以上就是专一自行车为你收集整理的Angular8引入百度Echarts进行图表分析的实现代码的全部内容,希望文章能够帮你解决Angular8引入百度Echarts进行图表分析的实现代码所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复