personCharts.vue
3.06 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<template>
<div class="_chart">
<div class="_chartTitle">
<h3>人群属性</h3>
<span>统计近30天累计消费人群数据</span>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div id="consumptionLevel" style="width: 600px;height:400px"></div>
</div>
<div class="col-sm-6">
<div id="vipDistribute" style="width: 600px;height:400px"></div>
</div>
</div>
</template>
<script type="text/javascript">
var echarts = require('echarts');
module.exports = {
data:function() {
return {
name:"6666"
}
},
ready:function(){
var consumptionLevel = echarts.init(document.getElementById('consumptionLevel'));
var vipDistribute = echarts.init(document.getElementById('vipDistribute'));
var option = this.getYOption();
// 使用刚指定的配置项和数据显示图表。
consumptionLevel.setOption(option);
vipDistribute.setOption(option);
},
methods:{
getYOption(){
var option = {
title : {
text: '消费水平',
subtext: '123'
},
tooltip : {
trigger: 'axis'
},
legend: {
data:['Vans旗舰店','YOHO!'],
show:true
},
xAxis : [
{
type : 'category',
data : ['1000以上','600~1000','300~600','100~300','0~100'],
name:'金额\n(元)',
nameLocation:'start',
axisTick:{
show:false
},
splitLine:{
show:false
}
}
],
yAxis : [
{
type : 'value',
position: 'right',
axisLine:{
show:false
},
axisTick:{
show:false
}
}
],
series : [
{
name:'Vans旗舰店',
type:'bar',
data:[2.0, 4.9, 7.0, 23.2, 25.6],
barGap:'0'
},
{
name:'YOHO!',
type:'bar',
data:[2.6, 5.9, 9.0, 26.4, 28.7]
}
]
};
return option;
}
}
}
</script>