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
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv= "Content-Type" content= "text/html; charset=utf-8" />
<title></title>
<meta charset= "utf-8" />
<link rel= "stylesheet" href= "style/style.css" >
<script src= "js/echarts.common.min.js" ></script>
</head>
<body>
<!-- 为ECharts准备一个具备大小(宽高)的Dom -->
<div id= "main" style= "width: 620px;height:400px;" ></div>
<script type= "text/javascript" >
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById( 'main' ));
var data = [[],[]];
var showVal = [[3, 200099, "中天博日" ], [2, 500039, "腾讯" ], [5, 188669, "中科" ], [4, 900009, "华为" ], [3, 333339, "阿里" ], [4, 233339, "万达" ], [2, 433339, "中信" ], [7, 388889, "中科" ], [6, 388889, "kkk" ], [4, 233359, 'lekd' ]];
showVal = showVal.sort(function (a, b) {
if (a[0] == b[0]) {
return a[1]>b[1]
}
return a[0] < b[0]
});
var schema = [
{ name: 'money' , index: 0, text: '金额' },
{ name: 'selUser' , index: 1, text: '选择中标人' }
];
for ( var i = 0; i < showVal.length; i++) {
var a= [];
if (showVal[0][1] == showVal[i][1]) {
if (showVal[0][0] == showVal[i][0]) {
data[0].push(showVal[i]);
} else {
data[1].push(showVal[i]);
}
} else {
data[1].push(showVal[i]);
}
}
option = {
backgroundColor: new echarts.graphic.RadialGradient(0.3, 0.3, 0.8, [{
offset: 0,
color: '#fff'
}, {
offset: 1,
color: '#fff'
}]),
title: {
left : '35%' ,
text: '寻找纸板插入物, 纸板供应商' ,
textStyle:{
color: '#354052' ,
fontSize:16
}
},
//系列标记
legend: {
y: 'bottom' ,
data: [ '投标' , '最佳出价' ],
itemGap:40,
},
//提示框的事例
tooltip: {
padding: 10,
backgroundColor: '#222' ,
borderColor: '#777' ,
borderWidth: 1,
formatter: function (obj) {
var value = obj.value;
return '<div style="border-bottom: 1px solid rgba(255,255,255,.3); font-size: 18px;padding-bottom: 7px;margin-bottom: 7px">'
+ value[2]
+ '</div>'
+ schema[0].text + ':' + value[1] + '<br>'
+ '选择中标人<br>'
}
},
//x坐标的设置
xAxis: {
name: '供应商评分' ,
nameTextStyle: {
color: '#7F8FA4' ,
fontSize: 12
},
axisLine: {
lineStyle: {
color: '#979797'
}
},
splitLine: {
lineStyle: {
color: '#D8D8D8' ,
type: 'dashed' ,
}
}
},
//y坐标的设置
yAxis: {
name: '投标金额' ,
//坐标轴名称
nameTextStyle: {
color: '#7F8FA4' ,
fontSize: 12
},
//坐标轴的设置
axisLine: {
lineStyle: {
color: '#979797'
}
},
//坐标轴的分割线
splitLine: {
lineStyle: {
color: '#D8D8D8' ,
type: 'dashed' ,
}
},
scale: true
},
series: [{
name: '最佳出价' ,
data: data[0],
type: 'scatter' ,
symbolSize: function (data) {
return Math.sqrt(data[1]) / 5e2 * 10;
},
itemStyle: {
normal: {
shadowBlur: 10,
shadowColor: 'rgba(255,128,5,0.5)' ,
shadowOffsetY: 5,
color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{
offset: 0,
color: '#FF8005 '
}, {
offset: 1,
color: '#FF8005'
}])
}
}, markLine: {
silent: true ,
lineStyle: {
normal: {
type: 'solid' ,
}
},
data: [{
yAxis: data[1][7][1]
}],
label: {
normal: {
formatter: '机会金额'
}
}
}
}, {
name: '投标' ,
data: data[1],
type: 'scatter' ,
symbolSize: function (data) {
return Math.sqrt(data[1]) / 5e2 * 10;
},
itemStyle: {
normal: {
shadowBlur: 10,
shadowColor: 'rgba(55,178,72,0.5)' ,
shadowOffsetY: 5,
color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{
offset: 0,
color: '#37B248'
}, {
offset: 1,
color: '#37B248'
}])
}
},
}]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
</html>
|