您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)mpvue中如何使用使用wx-charts圖表插件,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
git clone git@github.com:xiaolin3303/wx-charts.git
在clone下來的dist文件夾獲得wxcharts-min.js(混淆版本),如果需要進行二次開發(fā),可以使用wxcharts.js然后修改 內(nèi)容,達到定制化的目的,修改完后可以利用在線混淆進行重新混淆使用。
<!--/src/pages/bar/bar.vue template中內(nèi)容 --><canvas canvas-id="areaCanvas" class="canvas" @touchstart="touchHandler"></canvas>
// /src/pages/bar/bar.vue script中內(nèi)容var wxCharts = require('@/lib/wxcharts-min.js'); //該路徑為該js文件在你項目中的路徑export default { name: "bar", data() { return { bar: null } }, mounted: function (e) { var windowWidth = 320; try { var res = wx.getSystemInfoSync(); windowWidth = res.windowWidth; } catch (e) { console.error('getSystemInfoSync failed!'); } this.bar = new wxCharts({ canvasId: 'areaCanvas', type: 'area', categories: ['1', '2', '3', '4', '5', '6'], animation: true, series: [{ name: '成交量1', data: [32, 45, null, 56, 33, 34], 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: windowWidth, height: 200 }); }, methods: { touchHandler: function (e) { console.log(this.bar.getCurrentDataIndex(e)); this.bar.showToolTip(e); } } }
看完上述內(nèi)容,你們對mpvue中如何使用使用wx-charts圖表插件有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。