https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wx1db9e5ab1149ea03&token=1496975098&lang=zh_CN
接入步骤
1、插件申请
首先要在小程序管理后台的“设置-第三方服务-插件管理”中添加插件。开发者可登录小程序管理后台,通过 wx1db9e5ab1149ea03
查找插件并添加。通过申请后,方可在小程序中使用相应的插件
2、引入插件配置
在 app.json 中插件如下代码,注意 AppId 为 wx1db9e5ab1149ea03
{
"plugins": {
"echarts": {
"version": "1.0.3",
"provider": "wx1db9e5ab1149ea03"
}
}
}
3、使用方式
在使用的页面中的 json 配置文件中,插件如下代码:
{
"usingComponents": {
"chart": "plugin://echarts/chart"
}
}
在 wxml 中需要展示图表的位置,插入如下代码:
<chart chart-class="chart" option="{{ option }}" bindinstance="onInstance" />
其中 chart-class 为样式类,option 为 ECharts 中的 option 配置对象,bindinstance 会回调 ECharts 实例对象,如果需要操作 ECharts 实例对象可以实现此方法
*option 直接从官网复制过来就可以了