更新记录
0.2(2020-12-04) 下载此版本
添加中国地图图表
0.1(2020-12-04) 下载此版本
初始化,支持柱状图、线图、仪表盘
平台兼容性
echarts for app的实例
引入 echarts.min.js
<!-- #ifdef APP-PLUS || H5 --> <view id="container"></view>
<!-- #endif -->
<!-- #ifndef APP-PLUS || H5 -->
<view>非 APP、H5 环境不支持</view>
<!-- #endif -->
创建图表
// 创建 html5 canvas DOM
const canvas = document.createElement('canvas')
// id 不可重复
canvas.id = 'f2'
canvas.width = uni.upx2px(750)
canvas.height = uni.upx2px(750)
container(canvas)
this.canvas = canvas;