IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 微信小程序(一):小程序中使用EChart、控制EChart显示隐藏及数据懒加载 -> 正文阅读

[移动开发]微信小程序(一):小程序中使用EChart、控制EChart显示隐藏及数据懒加载

效果

在这里插入图片描述

引入ECharts

参见 https://github.com/ecomfe/echarts-for-weixin

目录

在这里插入图片描述

源码

pages/index/index.json

{
  "usingComponents": {
    "ec-canvas": "../../ec-canvas/ec-canvas"
  }
}

pages/index/index.wxml

<!--index.wxml-->
<view class="container">
  <button bindtap="chartInit" size="mini" type="primary">请求数据加载图表</button>
  <button bindtap="chartReLoad" size="mini" type="primary">修改数据重载图表</button>
  <button bindtap="chartClear" size="mini" type="primary">清除图表数据</button>
  <button bindtap="chartShow" size="mini" type="primary">显示图表(使用保存起来的数据的副本)</button>
  <button bindtap="chartDispose" size="mini" type="primary">释放图表</button>
  <view class="chart" hidden="{{ !isShow }}">
    <ec-canvas id="my-chart" canvas-id="mychart-bar" ec="{{ ec }}"></ec-canvas>
  </view>
  <button bindtap="bindToggle" size="mini" type="primary">切换显示隐藏 {{isShow}}</button>
</view>

pages/index/index.wxss

/**index.wxss**/
button{
  display: block!important;
  margin: 10rpx;
}
.chart {
  display: block;
  width: 100%;
  height: 500rpx;
  background-color: #b9b8b8;
}

ec-canvas{
  display: block;
  width: 100%;
  height: 500rpx;
}

pages/index/index.js

import * as echarts from '../../ec-canvas/echarts';

Page({

	ecComponent: null,
	chart: null,

	onLoad() {
		const that = this;
		// 获取组件
		that.ecComponent = that.selectComponent('#my-chart');
	},

	data: {
		isShow: false,
		ec: {
			// 将 lazyLoad 设为 true 后,需要手动初始化图表
			lazyLoad: true
		},
		option: {
			grid: {
				left: 20,
				right: 40,
				bottom: 15,
				top: 40,
				containLabel: true
			},
			xAxis: {
				type: 'value',
			},
			yAxis: {
				type: 'category',
				data: [],
			},
			series: [{
				type: 'bar',
				data: [],
			}]
		},
	},

	// 点击按钮后初始化图表
	chartInit() {
		const that = this;
		if (!that.ecComponent) return wx.showToast({
			icon: "error",
			title: '请初始化组件',
		});

		that.ecComponent.init((canvas, width, height, dpr) => {
			// 获取组件的 canvas、width、height 后的回调函数
			// 在这里初始化图表
			const chart = echarts.init(canvas, null, {
				width: width,
				height: height,
				devicePixelRatio: dpr // new
			});

			// 模拟请求接口
			setTimeout(() => {
				that.data.option.yAxis.data = ['汽车之家', '今日头条', '百度贴吧', '一点资讯', '微信', '微博', '知乎'];
				that.data.option.series[0].data = [300, 270, 340, 344, 300, 320, 310];
				let option = JSON.parse(JSON.stringify(that.data.option));
				chart.setOption(option);
			}, 1000)

			// 将图表实例绑定到 this 上,可以在其他成员函数(如 dispose)中访问
			that.chart = chart;
			console.log(chart);

			// 注意这里一定要返回 chart 实例,否则会影响事件处理等
			return chart;
		});
	},

	// 重新加载
	chartReLoad() {
		const that = this;
		if (that.chart) {
			that.data.option.yAxis.data = ['汽车之家', '今日头条', '百度贴吧'];
			that.data.option.series[0].data = [300, 270, 340];
			let option = JSON.parse(JSON.stringify(that.data.option));
			that.chart.setOption(option);
		};
	},

	// 清除图表数据
	chartClear() {
		const that = this;
		if (that.chart) that.chart.clear();
	},

	// 显示
	chartShow(){
		const that = this;
		if (that.chart){
			let option = JSON.parse(JSON.stringify(that.data.option));
			that.chart.setOption(option);
		} 
	},

	// 销毁
	chartDispose() {
		const that = this;
		if (that.chart) that.chart.dispose();
	},

	// 切换显示隐藏
	bindToggle(e){
		const that = this;
		that.setData({
			isShow: !that.data.isShow
		})
		if(that.data.isShow){
			that.chartInit();
		}
	}
});
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 00:13:15  更:2022-04-01 00:13:51 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 20:12:25-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码