uniapp打包安卓 使用echarts插件 柱状折线等...

2024-05-07 15:28

本文主要是介绍uniapp打包安卓 使用echarts插件 柱状折线等...,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

uniapp打包安卓 使用echarts插件 柱状折线等…

因为安卓端没有dom操作所以要使用 renderjs

直接上代码

html

<template><view class="content"><viewid="echartsa":prop="viewProp":change:prop="echarts.updateEcharts"class="echarts"></view></view>
</template>

js

<script>import { showApi } from '../../../api/index.js'; //测试接口import { onLoad } from '@dcloudio/uni-app';export default {data() {return {name: '',};},mounted() {this.getdata(); //测试调用},methods: {async getdata() {const res = await showApi();this.name = res; //测试数据},},computed: {viewProp() {return {option: this.name, //测试数据};},},};
</script>

renderjs

<script module="echarts" lang="renderjs">import * as echarts from 'echarts';let myChartexport default {data(){return{category:["2012年","2013年","2014年","2015年","2016年","2017年","2018年",],dottedBase:[],lineData : [18092, 24045, 32808, 36097, 44715, 50415, 56061, 59521, 18092, 24045, 32808,36097, 44715, 50415, 39867, 44715, 48444, 50415, 50061, 32677, 49521, 32808,],barData : [4600, 5500, 7500, 8500, 12500, 21500, 23200, 25250, 4600, 5500, 6500, 8500,22500, 21500, 9900, 12500, 14000, 21500, 23200, 24450, 25250, 7500,],rateData : [],name:''}},mounted() {// 判断if (typeof window.echarts === 'function') {this.initEcharts()} else {const script = document.createElement('script')script.src = 'static/echarts.min.js'script.onload = this.initEcharts.bind(this)document.head.appendChild(script)}},methods: {updateEcharts(newValue, oldValue, ownerInstance, instance) {this.name = newValue.option.msg //调用一次},initEcharts() {for (var i = 0; i < 33; i++) {var rate = (this.barData[i] / this.lineData[i]) * 100;this.rateData[i] = rate.toFixed(2);}var option = {title: {text: "",x: "center",y: 0,textStyle: {color: "#B4B4B4",fontSize: 16,fontWeight: "normal",},},tooltip: {trigger: "axis",backgroundColor: "rgba(255,255,255,0.1)",axisPointer: {type: "shadow",label: {show: true,backgroundColor: "",},},},legend: {data: [this.name, "交易笔数"], //测试数据textStyle: {color: "#B4B4B4",},top: "7%",},grid: {x: "12%",width: "82%",y: "12%",},xAxis: {name: "时",data: this.category,axisLine: {lineStyle: {color: "#B4B4B4",},},axisTick: {show: false,},},yAxis: [{name: "元",splitLine: { show: false },axisLine: {lineStyle: {color: "#B4B4B4",},},axisLabel: {formatter: "{value} ",},},{name: "笔",splitLine: { show: false },axisLine: {lineStyle: {color: "#B4B4B4",},},axisLabel: {formatter: "{value} ",},},],series: [{name: "交易笔数",type: "line",smooth: true,showAllSymbol: true,symbol: "emptyCircle",symbolSize: 4,yAxisIndex: 1,itemStyle: {normal: {color: "#FFE666",},},data: this.rateData,},{name: this.name, //测试数据type: "bar",barWidth: 10,itemStyle: {normal: {barBorderRadius: 10,color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: "#26FFDB" },{ offset: 1, color: "#0F5C74" },]),},},data: this.barData,},],};myChart = echarts.init(document.getElementById('echartsa'))myChart.setOption(option)myChart.resize()window.addEventListener('resize', () => {myChart.resize()});},}}
</script>

css

<style>.echarts {width: 420px;height: 300px;}
</style>

这篇关于uniapp打包安卓 使用echarts插件 柱状折线等...的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/967737

相关文章

Java中流式并行操作parallelStream的原理和使用方法

《Java中流式并行操作parallelStream的原理和使用方法》本文详细介绍了Java中的并行流(parallelStream)的原理、正确使用方法以及在实际业务中的应用案例,并指出在使用并行流... 目录Java中流式并行操作parallelStream0. 问题的产生1. 什么是parallelS

Linux join命令的使用及说明

《Linuxjoin命令的使用及说明》`join`命令用于在Linux中按字段将两个文件进行连接,类似于SQL的JOIN,它需要两个文件按用于匹配的字段排序,并且第一个文件的换行符必须是LF,`jo... 目录一. 基本语法二. 数据准备三. 指定文件的连接key四.-a输出指定文件的所有行五.-o指定输出

Linux jq命令的使用解读

《Linuxjq命令的使用解读》jq是一个强大的命令行工具,用于处理JSON数据,它可以用来查看、过滤、修改、格式化JSON数据,通过使用各种选项和过滤器,可以实现复杂的JSON处理任务... 目录一. 简介二. 选项2.1.2.2-c2.3-r2.4-R三. 字段提取3.1 普通字段3.2 数组字段四.

Linux kill正在执行的后台任务 kill进程组使用详解

《Linuxkill正在执行的后台任务kill进程组使用详解》文章介绍了两个脚本的功能和区别,以及执行这些脚本时遇到的进程管理问题,通过查看进程树、使用`kill`命令和`lsof`命令,分析了子... 目录零. 用到的命令一. 待执行的脚本二. 执行含子进程的脚本,并kill2.1 进程查看2.2 遇到的

详解SpringBoot+Ehcache使用示例

《详解SpringBoot+Ehcache使用示例》本文介绍了SpringBoot中配置Ehcache、自定义get/set方式,并实际使用缓存的过程,文中通过示例代码介绍的非常详细,对大家的学习或者... 目录摘要概念内存与磁盘持久化存储:配置灵活性:编码示例引入依赖:配置ehcache.XML文件:配置

Java 虚拟线程的创建与使用深度解析

《Java虚拟线程的创建与使用深度解析》虚拟线程是Java19中以预览特性形式引入,Java21起正式发布的轻量级线程,本文给大家介绍Java虚拟线程的创建与使用,感兴趣的朋友一起看看吧... 目录一、虚拟线程简介1.1 什么是虚拟线程?1.2 为什么需要虚拟线程?二、虚拟线程与平台线程对比代码对比示例:三

k8s按需创建PV和使用PVC详解

《k8s按需创建PV和使用PVC详解》Kubernetes中,PV和PVC用于管理持久存储,StorageClass实现动态PV分配,PVC声明存储需求并绑定PV,通过kubectl验证状态,注意回收... 目录1.按需创建 PV(使用 StorageClass)创建 StorageClass2.创建 PV

Redis 基本数据类型和使用详解

《Redis基本数据类型和使用详解》String是Redis最基本的数据类型,一个键对应一个值,它的功能十分强大,可以存储字符串、整数、浮点数等多种数据格式,本文给大家介绍Redis基本数据类型和... 目录一、Redis 入门介绍二、Redis 的五大基本数据类型2.1 String 类型2.2 Hash

Redis中Hash从使用过程到原理说明

《Redis中Hash从使用过程到原理说明》RedisHash结构用于存储字段-值对,适合对象数据,支持HSET、HGET等命令,采用ziplist或hashtable编码,通过渐进式rehash优化... 目录一、开篇:Hash就像超市的货架二、Hash的基本使用1. 常用命令示例2. Java操作示例三

Linux创建服务使用systemctl管理详解

《Linux创建服务使用systemctl管理详解》文章指导在Linux中创建systemd服务,设置文件权限为所有者读写、其他只读,重新加载配置,启动服务并检查状态,确保服务正常运行,关键步骤包括权... 目录创建服务 /usr/lib/systemd/system/设置服务文件权限:所有者读写js,其他