热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

微信小程序环形图/折线图(canvas)

实现效果图页面调用方式环形百分比

实现效果图
在这里插入图片描述
在这里插入图片描述
页面调用方式

环形百分比
折线图

页面CSS

.ponet_warp{display: flex;flex-direction: column;width: 100%;justify-content: center;align-items: center;
}
.titel_name{width: 94%;margin-left: 3%;padding: 10px 0px;font-size: 24px;font-weight: 700;
}

页面JSON

{"usingComponents": {"annulus":"/component/annulus/annulus","brokens":"/component/brokens/brokens"}
}

环形图组件代码

Component({/*** 组件的属性列表*/properties: {/*** 高度*/heights:{type:Number,value:300,},/*** 百分比*/bfbNumber:{type:Number,value:0,},/*** 圆弧半径*/rNumber:{type:Number,value:80},annuColor:{type:String,value:'#FF0000'}}, attached(){this.createArc();},/*** 组件的初始数据*/data: {canvasWidth:0,},/*** 组件的方法列表*/methods: {createArc(){let that =this;let canvasWidth = 0;wx.getSystemInfo({success: function (res) {canvasWidth = res.windowWidth - 56that.setData({canvasWidth})},})let num = that.properties.bfbNumber;let rNumber = that.properties.rNumber;let canvasHeight = that.properties.heights;let annuColor = that.properties.annuColor;if(num > 100){num = 100}const ctx = wx.createCanvasContext('arc', this)ctx.beginPath()ctx.strokeStyle='#c0c0c0'ctx.lineWidth = 7ctx.arc(canvasWidth / 2 ,canvasHeight / 2 , rNumber, 0, Math.PI*2)ctx.stroke()ctx.beginPath()ctx.strokeStyle= annuColorctx.arc(canvasWidth / 2 , canvasHeight / 2 , rNumber,Math.PI *1.5,(Math.PI * 2 / 100) * num + (Math.PI*1.5))ctx.stroke()ctx.draw()},}
})

环形图wxml


折线图组件代码

// component/brokens/brokens.js
Component({/*** 组件的属性列表*/properties: {/*** 高度*/heights: {type: Number,value: 300,},valueArr: {type: Array,value: [],},nameArr: {type: Array,value: [],},colorArr:{type:Array,value:[&#39;#e54d42&#39;,&#39;#f37b1d&#39;,&#39;#fbbd08&#39;,&#39;#8dc63f&#39;,&#39;#39b54a&#39;,&#39;#1cbbb4&#39;,&#39;#0081ff&#39;]}},/*** 组件的初始数据*/data: {canvasWidth:0,},attached() {this.createLineCanvas();},/*** 组件的方法列表*/methods: {createLineCanvas() {let that &#61;this;let canvasWidth &#61; 0;wx.getSystemInfo({success: function (res) {canvasWidth &#61; res.windowWidth - 56that.setData({canvasWidth})},})let nameArr &#61; that.properties.nameArr;let valueArr &#61; that.properties.valueArr;let colorArr &#61; that.properties.colorArr;let heights &#61; that.properties.heights - 20;let maxData &#61; this.getGroupAndMax(valueArr);let hme &#61; heights / maxData.maxlet wme &#61; canvasWidth / nameArr.lengthconst ctx &#61; wx.createCanvasContext(&#39;linecanvas&#39;, this)//底部字段ctx.beginPath()ctx.setTextAlign(&#39;center&#39;)nameArr.forEach((item,index) &#61;>{ctx.fillText(item,wme * index &#43;20,heights)})ctx.stroke();//线段valueArr.forEach((item,ind) &#61;>{ctx.lineWidth &#61; 1;ctx.beginPath()ctx.strokeStyle&#61; colorArr[ind]item.data.forEach( (items,index) &#61;>{if(index &#61;&#61; 0){ctx.moveTo(wme*index&#43;20 ,items * hme -20)}else{ctx.lineTo(wme*index&#43;20 ,items * hme)}})ctx.stroke();ctx.closePath();})//右边标尺ctx.beginPath()ctx.strokeStyle &#61; "#c0c0c0"ctx.moveTo(20,0)ctx.lineTo(20,heights-20)ctx.stroke()ctx.closePath();ctx.beginPath()let hdata &#61; maxData.max / 10 let heid &#61; heights / 10 for (let index &#61; 0; index <10; index&#43;&#43;) {if(index &#61;&#61; 0){ctx.fillText(hdata * (index&#43;1),10,heights-20 - (heid *index))}else{ctx.fillText(hdata * (index&#43;1),10,heights-20 - (heid *index))}}//底部标尺ctx.beginPath()ctx.strokeStyle &#61; "#c0c0c0"ctx.moveTo(10,heights -20)ctx.lineTo(canvasWidth,heights-20)ctx.stroke()ctx.closePath();ctx.draw()},getGroupAndMax(arr){let max &#61; 0;let group &#61; [];arr.forEach(element &#61;> {group.push(element.name)element.data.forEach(item &#61;>{if(item > max){max &#61; item;}})});let data &#61; {max,group}return data;},}
})

折线图wxml



推荐阅读
  • 本文详细介绍了中央电视台电影频道的节目预告,并通过专业工具分析了其加载方式,确保用户能够获取最准确的电视节目信息。 ... [详细]
  • 本文介绍如何通过 JavaScript 实现一个基于鼠标坐标的 Tooltip 弹出层,详细解释了如何获取窗口和文档的尺寸及滚动位置,并优化了代码结构。 ... [详细]
  • 本文详细探讨了JavaScript中的作用域链和闭包机制,解释了它们的工作原理及其在实际编程中的应用。通过具体的代码示例,帮助读者更好地理解和掌握这些概念。 ... [详细]
  • 本文介绍了多个关于JavaScript的书籍资源、实用工具和编程实例,涵盖从入门到进阶的各个阶段,帮助读者全面提升JavaScript编程能力。 ... [详细]
  • 本文讨论了如何根据特定条件动态显示或隐藏文件上传控件中的默认文本(如“未选择文件”)。通过结合CSS和JavaScript,可以实现更灵活的用户界面。 ... [详细]
  • 在 ExtJS 中,类的别名(alias)是开发过程中非常有用的一个特性。通过别名,开发者可以使用简短且易于记忆的名称来引用复杂的类名。本文将详细探讨如何在 ExtJS API 中使用和定义别名,并提供实例说明。 ... [详细]
  • 基因组浏览器中的Wig格式解析
    本文详细介绍了Wiggle(Wig)格式及其在基因组浏览器中的应用,涵盖variableStep和fixedStep两种主要格式的特点、适用场景及具体使用方法。同时,还提供了关于数据值和自定义参数的补充信息。 ... [详细]
  • 基于KVM的SRIOV直通配置及性能测试
    SRIOV介绍、VF直通配置,以及包转发率性能测试小慢哥的原创文章,欢迎转载目录?1.SRIOV介绍?2.环境说明?3.开启SRIOV?4.生成VF?5.VF ... [详细]
  • dotnet 通过 Elmish.WPF 使用 F# 编写 WPF 应用
    本文来安利大家一个有趣而且强大的库,通过F#和C#混合编程编写WPF应用,可以在WPF中使用到F#强大的数据处理能力在GitHub上完全开源Elmis ... [详细]
  • 探讨如何真正掌握Java EE,包括所需技能、工具和实践经验。资深软件教学总监李刚分享了对毕业生简历中常见问题的看法,并提供了详尽的标准。 ... [详细]
  • 本文介绍如何使用布局文件在Android应用中排列多行TextView和Button,使其占据屏幕的特定比例,并提供示例代码以帮助理解和实现。 ... [详细]
  • JavaScript实现表格数据的实时筛选功能
    本文介绍如何使用JavaScript实现对表格数据的实时筛选,帮助开发者提高用户体验。通过简单的代码示例,展示如何根据用户输入的关键字动态过滤表格内容。 ... [详细]
  • 本文介绍如何在 Cocos Creator 中创建一个 JavaScript 文件,并通过自定义方法监听和获取 PageView 组件当前翻页的索引。详细描述了代码实现及绑定步骤。 ... [详细]
  • 探讨了如何解决Ajax请求响应时间过长的问题。本文分析了一个从服务器获取少量数据的Ajax请求,尽管服务器已经对JSON响应进行了缓存,但实际响应时间仍然不稳定。 ... [详细]
  • 本文介绍如何使用 Angular 6 的 HttpClient 模块来获取 HTTP 响应头,包括代码示例和常见问题的解决方案。 ... [详细]
author-avatar
龙love猫
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有