-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
187 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,6 +74,9 @@ Page({ | |
}, { | ||
id: 'move', | ||
name: '页面不阻塞滚动' | ||
}, { | ||
id: 'saveCanvas', | ||
name: '保存 Canvas 到本地文件' | ||
}] | ||
}, | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
import * as echarts from '../../ec-canvas/echarts'; | ||
|
||
let chart = null; | ||
|
||
function initChart(canvas, width, height) { | ||
chart = echarts.init(canvas, null, { | ||
width: width, | ||
height: height | ||
}); | ||
canvas.setChart(chart); | ||
|
||
var option = { | ||
color: ['#37a2da', '#32c5e9', '#67e0e3'], | ||
tooltip: { | ||
trigger: 'axis', | ||
axisPointer: { // 坐标轴指示器,坐标轴触发有效 | ||
type: 'shadow' // 默认为直线,可选为:'line' | 'shadow' | ||
} | ||
}, | ||
legend: { | ||
data: ['热度', '正面', '负面'] | ||
}, | ||
grid: { | ||
left: 20, | ||
right: 20, | ||
bottom: 15, | ||
top: 40, | ||
containLabel: true | ||
}, | ||
xAxis: [ | ||
{ | ||
type: 'value', | ||
axisLine: { | ||
lineStyle: { | ||
color: '#999' | ||
} | ||
}, | ||
axisLabel: { | ||
color: '#666' | ||
} | ||
} | ||
], | ||
yAxis: [ | ||
{ | ||
type: 'category', | ||
axisTick: { show: false }, | ||
data: ['汽车之家', '今日头条', '百度贴吧', '一点资讯', '微信', '微博', '知乎'], | ||
axisLine: { | ||
lineStyle: { | ||
color: '#999' | ||
} | ||
}, | ||
axisLabel: { | ||
color: '#666' | ||
} | ||
} | ||
], | ||
series: [ | ||
{ | ||
name: '热度', | ||
type: 'bar', | ||
label: { | ||
normal: { | ||
show: true, | ||
position: 'inside' | ||
} | ||
}, | ||
data: [300, 270, 340, 344, 300, 320, 310], | ||
itemStyle: { | ||
// emphasis: { | ||
// color: '#37a2da' | ||
// } | ||
} | ||
}, | ||
{ | ||
name: '正面', | ||
type: 'bar', | ||
stack: '总量', | ||
label: { | ||
normal: { | ||
show: true | ||
} | ||
}, | ||
data: [120, 102, 141, 174, 190, 250, 220], | ||
itemStyle: { | ||
// emphasis: { | ||
// color: '#32c5e9' | ||
// } | ||
} | ||
}, | ||
{ | ||
name: '负面', | ||
type: 'bar', | ||
stack: '总量', | ||
label: { | ||
normal: { | ||
show: true, | ||
position: 'left' | ||
} | ||
}, | ||
data: [-20, -32, -21, -34, -90, -130, -110], | ||
itemStyle: { | ||
// emphasis: { | ||
// color: '#67e0e3' | ||
// } | ||
} | ||
} | ||
] | ||
}; | ||
|
||
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() { | ||
setTimeout(() => { | ||
this.save(); | ||
}); | ||
}, | ||
|
||
save() { | ||
// 保存图片到临时的本地文件 | ||
const ecComponent = this.selectComponent('#mychart-dom-save'); | ||
ecComponent.canvasToTempFilePath({ | ||
success: res => console.log(res.tempFilePath), | ||
fail: res => console.log(res) | ||
}); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"usingComponents": { | ||
"ec-canvas": "../../ec-canvas/ec-canvas" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<!--index.wxml--> | ||
<view class="container"> | ||
<ec-canvas id="mychart-dom-save" canvas-id="mychart-save" ec="{{ ec }}"></ec-canvas> | ||
</view> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/**index.wxss**/ | ||
ec-canvas { | ||
width: 100%; | ||
height: 100%; | ||
} |
17af058
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
苹果可以,安卓还是不行