WordCloud.vue
3.58 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<template>
<div :class="className" :style="{height:height,width:width}" />
</template>
<script>
import echarts from 'echarts'
require('echarts-wordcloud')
require('echarts/theme/macarons') // echarts theme
import { debounce } from '@/utils'
export default {
props: {
className: {
type: String,
default: 'chart'
},
width: {
type: String,
default: '100%'
},
height: {
type: String,
default: '300px'
}
},
data() {
return {
chart: null
}
},
mounted() {
this.initChart()
this.__resizeHandler = debounce(() => {
if (this.chart) {
this.chart.resize()
}
}, 100)
window.addEventListener('resize', this.__resizeHandler)
},
beforeDestroy() {
if (!this.chart) {
return
}
window.removeEventListener('resize', this.__resizeHandler)
this.chart.dispose()
this.chart = null
},
methods: {
initChart() {
this.chart = echarts.init(this.$el, 'macarons')
const data = [{
'name': '花鸟市场',
'value': 1446
},
{
'name': '汽车',
'value': 928
},
{
'name': '视频',
'value': 906
},
{
'name': '电视',
'value': 825
},
{
'name': 'Lover Boy',
'value': 514
},
{
'name': '动漫',
'value': 486
},
{
'name': '音乐',
'value': 53
},
{
'name': '直播',
'value': 163
},
{
'name': '广播电台',
'value': 86
},
{
'name': '戏曲曲艺',
'value': 17
},
{
'name': '演出票务',
'value': 6
},
{
'name': '给陌生的你听',
'value': 1
},
{
'name': '资讯',
'value': 1437
},
{
'name': '商业财经',
'value': 422
},
{
'name': '娱乐八卦',
'value': 353
},
{
'name': '军事',
'value': 331
},
{
'name': '科技资讯',
'value': 313
},
{
'name': '社会时政',
'value': 307
},
{
'name': '时尚',
'value': 43
},
{
'name': '网络奇闻',
'value': 15
},
{
'name': '旅游出行',
'value': 438
},
{
'name': '景点类型',
'value': 957
},
{
'name': '国内游',
'value': 927
},
{
'name': '远途出行方式',
'value': 908
},
{
'name': '酒店',
'value': 693
},
{
'name': '关注景点',
'value': 611
},
{
'name': '旅游网站偏好',
'value': 512
},
{
'name': '出国游',
'value': 382
}]
this.chart.setOption({
backgroundColor: '#fff',
tooltip: {
show: false
},
series: [{
type: 'wordCloud',
gridSize: 1,
sizeRange: [12, 55],
rotationRange: [-45, 0, 45, 90],
textStyle: {
normal: {
color: function() {
return 'rgb(' +
Math.round(Math.random() * 255) +
', ' + Math.round(Math.random() * 255) +
', ' + Math.round(Math.random() * 255) + ')'
}
}
},
left: 'center',
top: 'center',
right: null,
bottom: null,
data: data
}]
})
}
}
}
</script>