700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > wx-charts微信小程序图表插件

wx-charts微信小程序图表插件

时间:2023-07-28 16:39:15

相关推荐

wx-charts微信小程序图表插件

wx-charts

微信小程序主流的图表工具

基于 Canvas,体积小

支持图表类型

饼图 pie圆环图 ring线图 line柱状图 column区域图 area雷达图 radar

如何使用

1. 直接拷贝编译好的文件 dist/wxcharts-min.js 到项目中(js下载地址)

import wxCharts from '../../utils/wxcharts-min.js'

2. wxml 中定义

<canvas canvas-id="pieCanvas" disable-scroll="true" class="pieCanvas" style="width:300px; height:300px;"></canvas>

canvas-id 与 new wxCharts({canvasId: ''}) 中的 canvasId 一致。

Demo

1. 饼图 pie

new wxCharts({ animation: true, canvasId: 'pieCanvas', type: 'pie', series: [{ name: '成交量1', data: 15, }, { name: '成交量2', data: 35, }, { name: '成交量3', data: 78, }], width: 300, height: 300, })

2. 圆环图 ring

new wxCharts({ animation: true, canvasId: 'ringCanvas', type: 'ring', extra: { ringWidth: 25, pie: { offsetAngle: -45 } }, title: { name: '70%', color: '#7cb5ec', fontSize: 25 }, subtitle: { name: '收益率', color: '#666666', fontSize: 15 }, series: [{ name: '成交量1', data: 15, stroke: false }, { name: '成交量2', data: 35, stroke: false }, { name: '成交量3', data: 78, stroke: false }, { name: '成交量4', data: 63, stroke: false }], disablePieStroke: true, width: 300, height: 300, dataLabel: false, legend: false, padding: 0 })

3.线图 line

new wxCharts({ canvasId: 'lineCanvas', type: 'line', categories: [ '-1', '-2', '-3', '-4', '-5', '-6', '-7', '-8', '-9', '-10'], animation: true, series: [{ name: '成交量1', data: [ 12, 10, 18, 16, 19, 13, 11, 10, 15, 14], format: function (val, name) { return val.toFixed( 2) + '万'; } }, { name: '成交量2', data: [ 2, 0, 0, 3, null, 4, 0, 0, 2, 0], format: function (val, name) { return val.toFixed( 2) + '万'; } }], xAxis: { disableGrid: true }, yAxis: { title: '成交金额 (万元)', format: function (val) { return val.toFixed( 2); }, min: 0 }, width: 300, height: 300, dataLabel: false, dataPointShape: true, extra: { lineStyle: 'curve' } })

4.柱状图 column

new wxCharts({ canvasId: 'columnCanvas', type: 'column', animation: true, categories: [ '', '', '', ''], series: [{ name: '成交量', data: [ 15, 20, 45, 37], format: function (val, name) { return val.toFixed( 2) + '万'; } }], yAxis: { format: function (val) { return val + '万'; }, title: 'Column', min: 0 }, xAxis: { disableGrid: false, type: 'calibration' }, extra: { column: { width: 15 } }, width: 300, height: 200, });

5.区域图 area

new wxCharts({ canvasId: 'areaCanvas', type: 'area', categories: [ '1', '2', '3', '4', '5', '6'], animation: true, series: [{ name: '成交量1', data: [ 32, 45, 0, 56, 33, 34], format: function (val) { return val.toFixed( 2) + '万'; } }, { name: '成交量2', data: [ 15, 20, 45, 37, 4, 80], format: function (val) { return val.toFixed( 2) + '万'; }, }], yAxis: { title: '成交金额 (万元)', format: function (val) { return val.toFixed( 2); }, min: 0, fontColor: '#8085e9', gridColor: '#8085e9', titleFontColor: '#f7a35c' }, xAxis: { fontColor: '#7cb5ec', gridColor: '#7cb5ec' }, extra: { legendTextColor: '#cb2431' }, width: 300, height: 250 });

6.雷达图 radar

new wxCharts({ canvasId: 'radarCanvas', type: 'radar', categories: [ '1', '2', '3', '4', '5', '6'], series: [{ name: '成交量1', data: [ 90, 110, 125, 95, 87, 122] }], width: 300, height: 200, extra: { radar: { max: 150 } } });

参数说明

opts Objectopts.canvasId String Required 对应wxml中的canvasIdopts.type String Required 图表类型,可选值为:pie、line、column、area、ring、radaropts.widthNumberRequired canvas宽度,单位pxopts.heightNumberRequired canvas高度,单位pxopts.legend Boolean 是否显示图表下方各类别的标识,默认trueopts.background String canvas背景颜色 ,默认#fffopts.animation Boolean是否动画展示,默认trueopts.enableScroll Boolean 是否开启图表可拖拽滚动,默认false,支持 line、area 图表类型(需配合绑定scrollStart, scroll, scrollEnd 方法)opts.categories ArrayRequired 数据类别分类 (pie、ring 图表不需要)opts.dataLabel Boolean 是否在图表中显示数据内容值,默认trueopts.dataPointShare Boolean 是否在图表中显示数据点图形标识,默认trueopts.xAxisObjectX轴配置opts.xAxis.gridColor StringX轴网格颜色opts.xAxis.fontColor StringX轴数据点颜色opts.xAxis.disableGrid Boolean 不绘制X轴网格,默认falseopts.xAxis.type String可选值:calibration(刻度),默认包含样式opts.yAxisObjectY轴配置opts.yAxis.format Function 自定义Y轴文案显示opts.yAxis.min Number Y轴起始值opts.yAxis.man Number Y轴终止值opts.yAxis.title StringY轴titleopts.yAxis.gridColor String Y轴网格颜色opts.yAxis.fontColor StringY轴数据点颜色opts.yAxis.titleFontColor String Y轴title颜色opts.yAxis.disabled Boolean不绘制Y轴,默认falseopts.extraObject其它非通用配置项opts.extra.ringWidth Numberring圆环宽度,单位pxopts.extra.lineStyle String 仅对line、area图表有效,可选值:curve曲线、straight直线,默认straightopts.extra.column Objectcolumn图表相关配置opts.extra.column.width Number 柱状图每项的图形宽度,单位pxopts.extra.legendTextColor String legend文案颜色opts.series Array Required 数据列表

数据列表series每项参数说明

dataItem ObjectdataItem.data Array Required 饼图、圆环图为Number数据,如果传入null,图表该处出现断点dataItem.color String不传入则使用系统默认的配色方案dataItem.name String 数据名称dataItem.format Function 自定义显示数据内容

ring图表相关配置

opts.titleObject 仅支持 ring图表类型opts.title.nameString 标题内容opts.title.fontSize Number 标题字体大小,单位pxopts.title.colorString 标题颜色opts.title.offsetXNumber 标题横向位置偏移量,单位px,默认0opts.subtitle Object 仅支持 ring图表类型opts.subtitle.name String副标题内容opts.subtitle.fontSize Number 副标题字体大小,单位pxopts.subtitle.color String 副标题颜色opts.subtitle.offsetX Number 副标题横向位置偏移量,单位px,默认0

radar 图表相关配置

opts.extra.radar Object radar图表相关配置opts.extra.radar.max Number 数据区间最大值,用于调整数据显示的比例,默认series data的最大值opts.extra.radar.labelColor String 各项标识文案的颜色,默认#666opts.extra.radar.gridColor String 雷达图网格颜色,默认#ccc

pie、ring 图表相关配置

opts.disablePieStroke Boolean 不绘制pie、ring图表各区块的白色分割线,默认falseopts.extra.pieObject pie、ring图表相关配置opts.extra.pie.offsetAngle Number 起始角度偏移度数,顺时针方向,起点为3点钟位置(比如要设置起点为12点钟位置,即逆时针偏移90度,传入-90即可),默认0

官网

/xiaolin3303/wx-charts

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。