echarts使用相关

在Hexo中使用echarts

使用插件hexo-tag-echarts3,该插件已经被收录到echart的插件中

Install

1
$ npm install hexo-tag-echarts --save

Usage

1
2
3
{% echarts 400 '85%' %}
\\TODO echarts option goes here
{% endecharts %}

Bug

在所用主题目录下<font color=#c7254e>layout\_partial</font>中的head.swig里加入:

1
<script src="http://echarts.baidu.com/dist/echarts.common.min.js"></script>

Test

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{% echarts 400 '85%' %}
{
tooltip : {
trigger: 'axis',
axisPointer : { // 坐标轴指示器,坐标轴触发有效
type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'
}
},
legend: {
data:['利润', '支出', '收入']
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis : [
{
type : 'value'
}
],
yAxis : [
{
type : 'category',
axisTick : {show: false},
data : ['周一','周二','周三','周四','周五','周六','周日']
}
],
series : [
{
name:'利润',
type:'bar',
itemStyle : {
normal: {
label: {show: true, position: 'inside'}
}
},
data:[200, 170, 240, 244, 200, 220, 210]
},
{
name:'收入',
type:'bar',
stack: '总量',
itemStyle: {
normal: {
label : {show: true}
}
},
data:[320, 302, 341, 374, 390, 450, 420]
},
{
name:'支出',
type:'bar',
stack: '总量',
itemStyle: {normal: {
label : {show: true, position: 'left'}
}},
data:[-120, -132, -101, -134, -190, -230, -210]
}
]
};
{% endecharts %}

for more information, see KChen’s Blog

在webpack中使用echarts

安装

1
$ npm install echarts --save

引入

index.html

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>echarts</title>
</head>
<body>
<div id="main" style="width: 1000px;height:800px;"></div>
</body>
</html>

main.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var echarts = require('echarts');

// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
// 绘制图表
myChart.setOption({
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
});

地图

普通地图

如china.js

虽然echart官网暂不提供地图下载:

ECharts 之前提供下载的矢量地图数据来自第三方,由于部分数据不符合国家《测绘法》规定,目前暂时停止下载服务。

建议大家使用以百度地图为底图的形式,参考实例:https://echarts.baidu.com/demo.html#map-polygon

但是我们仍然能够从找到.\node_modules\echarts\map\js

引用

main.js

1
2
const china = require('echarts/map/js/china')
const echarts = require('echarts')

测试

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
option = {
geo: {
map: 'china', //一定要用字符串
roam: true,
center: [101.497781, 31.26871],

label: {
emphasis: {
show: false
}
},
itemStyle: {
normal: {
areaColor: '#323c48',
borderColor: '#111'
},
emphasis: {
areaColor: '#2a333d'
}
}
}
}

效果

1

百度地图

引用

main.js

1
require('echarts/extension/bmap/bmap');

index.html

1
<script src="http://api.map.baidu.com/api?v=2.0&ak=你的AK"></script>

AK的获取见百度开放平台

测试

1
2
3
4
5
6
option = {
bmap: {
center: [101.497781, 31.26871],
roam: true
}
}

效果

2