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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
| <template>
| <el-main>
| <el-alert title="感谢百度Echarts组件, SCUI经过封装后在VUE里使用更方便而且暴露Echarts所有方法,具体请查看本文件" type="success" style="margin-bottom:20px;"></el-alert>
| <el-row :gutter="15">
| <el-col :lg="8">
| <el-card shadow="never">
| <scEcharts height="300px" :option="option"></scEcharts>
| </el-card>
| </el-col>
| <el-col :lg="8">
| <el-card shadow="never">
| <scEcharts height="300px" :option="option2"></scEcharts>
| </el-card>
| </el-col>
| <el-col :lg="8">
| <el-card shadow="never">
| <scEcharts height="300px" :option="option3"></scEcharts>
| </el-card>
| </el-col>
| <el-col :lg="8">
| <el-card shadow="never">
| <scEcharts height="300px" :option="option4"></scEcharts>
| </el-card>
| </el-col>
| <el-col :lg="8">
| <el-card shadow="never">
| <scEcharts height="300px" :option="option5"></scEcharts>
| </el-card>
| </el-col>
| <el-col :lg="8">
| <el-card shadow="never">
| <scEcharts height="300px" :option="option6"></scEcharts>
| </el-card>
| </el-col>
| </el-row>
| </el-main>
| </template>
|
| <script>
| import scEcharts from '@/components/scEcharts';
|
| /**
| * 引入组件 @/components/scEcharts
| * 组件内部会自动加载主题 @/components/scEcharts/echarts-theme-T.js
| * 支持props包括 height,width,option
| * 组件export百度Echarts所有方法,使用方式: new scEcharts[fun]
| */
|
| export default {
| name: 'chart',
| components: {
| scEcharts
| },
| data() {
| return {
| option: {
| title: {
| text: 'Bar Demo',
| subtext: '基础柱状图',
| },
| grid: {
| top: '80px'
| },
| tooltip: {
| trigger: 'axis'
| },
| xAxis: {
| type: 'category',
| data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
| },
| yAxis: {
| type: 'value'
| },
| series: [{
| data: [120, 200, 150, 80, 70, 110, 130],
| type: 'bar',
| barWidth: '15px',
| },
| {
| data: [110, 180, 120, 120, 60, 90, 110],
| type: 'bar',
| barWidth: '15px',
| }]
| },
| option2: {
| title: {
| text: 'Line Demo',
| subtext: '基础折线图',
| },
| grid: {
| top: '80px'
| },
| tooltip: {
| trigger: 'axis'
| },
| xAxis: {
| type: 'category',
| data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
| },
| yAxis: {
| type: 'value'
| },
| series: [{
| data: [120, 200, 150, 80, 70, 110, 130],
| type: 'line',
| },
| {
| data: [110, 180, 120, 120, 60, 90, 110],
| type: 'line',
| }]
| },
| option3: {
| title: {
| text: 'Pie Demo',
| subtext: '基础饼图',
| },
| tooltip: {
| trigger: 'item'
| },
| series: [
| {
| name: '访问来源',
| type: 'pie',
| radius: ['40%', '70%'],
| center: ['50%', '60%'],
| label: false,
| data: [
| {value: 1048, name: '搜索引擎'},
| {value: 735, name: '直接访问'},
| {value: 580, name: '邮件营销'},
| {value: 484, name: '联盟广告'},
| {value: 300, name: '视频广告'}
| ]
| }
| ]
| },
| option4: {
| title: {
| text: 'Radar Demo',
| subtext: '基础雷达(属性)图',
| },
| tooltip: {
| trigger: 'item'
| },
| radar: {
| radius: 100,
| center: ['50%', '55%'],
| indicator: [
| { name: '销售', max: 100},
| { name: '管理', max: 100},
| { name: '信息技术', max: 100},
| { name: '客服', max: 100},
| { name: '研发', max: 100},
| { name: '市场', max: 100}
| ]
| },
| series: [{
| name: "SCUI",
| type: 'radar',
| areaStyle: {},
| data: [
| {
| value: [74, 90, 95, 65, 80, 31],
| }
| ]
| }]
| },
| option5: {
| title: {
| text: 'Kline Demo',
| subtext: '基础K线图',
| },
| grid: {
| top: '80px'
| },
| tooltip: {
| trigger: 'axis',
| axisPointer: {
| type: 'cross'
| }
| },
| xAxis: {
| data: ['2017-10-23', '2017-10-24', '2017-10-25', '2017-10-26', '2017-10-27', '2017-10-28', '2017-10-29', '2017-10-30'],
| },
| yAxis: {
| scale: true,
| },
| series: [{
| type: 'k',
| data: [
| [2213.19,2199.31,2191.85,2224.63],
| [2203.89,2177.91,2173.86,2210.58],
| [2170.78,2174.12,2161.14,2179.65],
| [2179.05,2205.5,2179.05,2222.81],
| [2212.5,2231.17,2212.5,2236.07],
| [2227.86,2235.57,2219.44,2240.26],
| [2242.39,2246.3,2235.42,2255.21],
| [2246.96,2232.97,2221.38,2247.86]
| ]
| }]
| },
| option6: {
| title: {
| text: 'Gauge Demo',
| subtext: '基础仪表盘',
| },
| series: [{
| center: ['50%', '60%'],
| type: 'gauge',
| anchor: {
| show: true,
| showAbove: true,
| size: 20,
| itemStyle: {
| borderWidth: 5
| }
| },
| progress: {
| show: true
| },
| data: [{
| value: 70
| }]
| }]
| }
| }
| }
| }
| </script>
|
| <style>
| </style>
|
|