网站首页 > 技术文章 正文
切图网在做wepy小程序开发的时候,也会遇到一些状况,以此来记录,微信小程序开发的图表用到的是echarts-for-weixin,是针对微信开发的专用echarts组件,也是目前小程序下图表的一种主流的组合,用法和网页下使用echarts基本无异,语法上略有不同,下面讲解wepy微信小程序框架中引入百度echarts框架,实现折线统计图,亲测了可用。
效果展示:
一、下载插件:https://github.com/ecomfe/echarts-for-weixin
二、引入插件:将下载好的文件解压并放到 components 目录
<config>
{
navigationBarTitleText: 'echarts案例',
enablePullDownRefresh: false,
backgroundTextStyle: 'dark',
usingComponents: {
"ec-canvas": "~@/components/ec-canvas/ec-canvas"
}
}
</config>
<script>
import wepy from '@wepy/core'
import * as echarts from '@/components/ec-canvas/echarts';
</script>
三、使用插件:
3.1、前端代码
<!-- 图表 -->
<view class="main" >
<ec-canvas
id="month-trend-bar-dom1"
class="month-trend"
canvas-id="month-trend-bar"
bind:init="echartBarInit($wx,0)"
:ec=" ec ">
</ec-canvas>
</view>
<!-- 图表 -->
3.2、部分js代码
<script>
import wepy from '@wepy/core'
import * as echarts from '@/components/ec-canvas/echarts';
const app = getApp()
let globalData = app.$wepy.$options.globalData
wepy.page({
data: {
// 有需要的可进行一些配置
ec: {
},
},
async onLoad(options) {},
methods: {
//图表
async echartBarInit({detail},id){
var date = ["07.21", "07.20", "07.19", "07.16", "07.13", "07.12", "06.18"];
var data =["35", "78", "73", "73", "75", "75", "75"];
this.initChart(detail.canvas, detail.width, detail.height, detail.dpr, detail.wxNode,date,data)// 调用出初始化方法,进行echart初始化,重点在于传入的wxNode
},
initChart(canvas, width, height, dpr, wxNode,date,value) {
//此方法中可以随意的使用this,可以愉快的动态赋值了
console.log(this)
const chart = echarts.init(canvas, null, {
width: width,
height: height,
devicePixelRatio: dpr
});
canvas.setChart(chart);
var option = {
color:'#ed0046',
xAxis : [
{
type : 'category',
data : date,
boundaryGap: false,
}
],
yAxis : [
{
type : 'value',
x: 'center',
splitLine: {
lineStyle: {
type: 'dashed'
}
}
},
],
series: [
{
type:'line',
smooth: true,
data:value,
areaStyle: {
color:'#f7c7d5',
}
}
]
};
chart.setOption(option);
// 对传入的wxNode进行chart赋值,
// 与常规的return chart不一样,此方式下return后没有实际意义
wxNode.chart = chart;
// return chart
},
}
})
</script>
wepy官方网址
https://github.com/Tencent/wepy
- 上一篇: yarn安装echarts教程
- 下一篇: Echarts仿电梯运行图
猜你喜欢
- 2024-11-27 echarts图形报表的入门案例
- 2024-11-27 Echarts仿电梯运行图
- 2024-11-27 yarn安装echarts教程
- 2024-11-27 微信小程序使用 ECharts
- 2024-11-27 4、echarts 如何画图?(必会)
- 2024-11-27 JavaScript 前端数据可视化——ECharts.js
- 2024-11-27 vue+echarts使用
- 2024-11-27 简单介绍Vue使用echarts定制特殊的仪表盘
- 11-27echarts图形报表的入门案例
- 11-27Echarts仿电梯运行图
- 11-27微信小程序开发之wepy 引入echarts统计图方法 亲测可用
- 11-27yarn安装echarts教程
- 11-27微信小程序使用 ECharts
- 11-274、echarts 如何画图?(必会)
- 11-27JavaScript 前端数据可视化——ECharts.js
- 11-27vue+echarts使用
- 最近发表
- 标签列表
-
- cmd/c (57)
- c++中::是什么意思 (57)
- sqlset (59)
- ps可以打开pdf格式吗 (58)
- phprequire_once (61)
- localstorage.removeitem (74)
- routermode (59)
- vector线程安全吗 (70)
- & (66)
- java (73)
- org.redisson (64)
- log.warn (60)
- cannotinstantiatethetype (62)
- js数组插入 (83)
- resttemplateokhttp (59)
- gormwherein (64)
- linux删除一个文件夹 (65)
- mac安装java (72)
- reader.onload (61)
- outofmemoryerror是什么意思 (64)
- flask文件上传 (63)
- eacces (67)
- 查看mysql是否启动 (70)
- java是值传递还是引用传递 (58)
- 无效的列索引 (74)