溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

微信小程序Echarts圖表組件使用方法詳解

發(fā)布時間:2020-09-28 12:01:05 來源:腳本之家 閱讀:353 作者:祈澈菇?jīng)?/span> 欄目:web開發(fā)

1:下載 GitHub 上的 項目

微信小程序Echarts圖表組件使用方法詳解

2:但項目下載之后,打開小程序開發(fā)工具,可以看到效果如下,適配性還是比較完美的。

微信小程序Echarts圖表組件使用方法詳解

微信小程序Echarts圖表組件使用方法詳解

如果是在項目里面引入組件的話,打開從github上面下載的代碼,將ec-canvas文件夾復(fù)制黏貼到你的項目里面。

微信小程序Echarts圖表組件使用方法詳解

微信小程序Echarts圖表組件使用方法詳解

好的,組件已經(jīng)復(fù)制到了我的項目里面,現(xiàn)在我想實現(xiàn)一個折線圖,現(xiàn)在開始去組件里面搬運(yùn)復(fù)制黏貼代碼了。

wxml

<!--index.wxml-->
<view class="container">
<ec-canvas id="mychart-dom-line" canvas-id="mychart-line" ec="{{ ec }}"></ec-canvas>
</view>

js

import * as echarts from '../../ec-canvas/echarts';
const app = getApp();
function initChart(canvas, width, height) {
const chart = echarts.init(canvas, null, {
width: width,
height: height
});
canvas.setChart(chart);
var option = {
title: {
text: '測試下面legend的紅色區(qū)域不應(yīng)被裁剪',
left: 'center'
},
color: ["#37A2DA", "#67E0E3", "#9FE6B8"],
legend: {
data: ['A', 'B', 'C'],
top: 50,
left: 'center',
backgroundColor: 'red',
z: 100
},
grid: {
containLabel: true
},
tooltip: {
show: true,
trigger: 'axis'
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日'],
// show: false
},
yAxis: {
x: 'center',
type: 'value',
splitLine: {
lineStyle: {
type: 'dashed'
}
}
// show: false
},
series: [{
name: 'A',
type: 'line',
smooth: true,
data: [18, 36, 65, 30, 78, 40, 33]
}, {
name: 'B',
type: 'line',
smooth: true,
data: [12, 50, 51, 35, 70, 30, 20]
}, {
name: 'C',
type: 'line',
smooth: true,
data: [10, 30, 31, 50, 40, 20, 10]
}]
};
chart.setOption(option);
return chart;
}
Page({
onShareAppMessage: function (res) {
return {
title: 'ECharts 可以在微信小程序中使用啦!',
path: '/pages/index/index',
success: function () { },
fail: function () { }
}
},
data: {
ec: {
onInit: initChart
}
},
onReady() {
}
});

json

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

css

/**index.wxss**/
ec-canvas {
width: 100%;
height: 100%;
}

這一步為止,代碼搬運(yùn)結(jié)束,刷新按鈕,但是,為什么界面顯示空白?沒有報錯,代碼也一模一樣,真實讓人費(fèi)解,算了,還是先放在這里吧,吃飯要緊。

.......

.......

繼續(xù)寫

對,沒錯,空白不顯示的原因出在了css文件上面,只要我們在css里面再寫上一些代碼之后。

/**index.wxss**/
ec-canvas {
width: 100%;
height: 100%;
}
ec-canvas {
width: 100%;
height: 100%;
}
.container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
}
.picker-pos {
margin-top: -130rpx;
margin-left: 150rpx;
color: blueviolet;
}

這個時候

小程序Echarts圖表組件算是已經(jīng)可以運(yùn)用在項目里面啦

微信小程序Echarts圖表組件使用方法詳解

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI