alertCharts.js 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. var quxianChart = function(options){
  2. var series0data = options.series[0].data || [];
  3. var yAxisData = options.xAxis[0].data;
  4. var option = {
  5. "title": {
  6. "text": "区县分布",
  7. "x": "center",
  8. "textStyle": {
  9. color: ['#b5e1fc']
  10. },
  11. "padding": [10, 0, 0, 0]
  12. },
  13. "tooltip": {
  14. "trigger": "axis"
  15. },
  16. grid: {
  17. top: 80,
  18. bottom: 30,
  19. left: 80
  20. },
  21. "yAxis": [{
  22. "type": "category",
  23. "name": "人次",
  24. "data": yAxisData,
  25. axisPointer: {
  26. type: 'shadow'
  27. },
  28. axisTick: {
  29. show: false
  30. },
  31. axisLine: {
  32. lineStyle: {
  33. color: '#095f8e'
  34. }
  35. },
  36. axisLabel: {
  37. color: '#b5e1fc'
  38. },
  39. nameTextStyle: {
  40. color: '#b5e1fc'
  41. }
  42. }],
  43. "xAxis": [{
  44. "type": "value",
  45. axisPointer: {
  46. type: 'shadow'
  47. },
  48. axisTick: {
  49. show: false
  50. },
  51. axisLine: {
  52. lineStyle: {
  53. color: '#095f8e'
  54. }
  55. },
  56. axisLabel: {
  57. color: '#fff'
  58. },
  59. splitLine: {
  60. show: false // 不显示坐标轴刻度
  61. }
  62. }],
  63. "series": [{
  64. "smooth": true,
  65. "name": "区县分布",
  66. "type": "bar",
  67. barWidth: 20,
  68. "label": {
  69. show: false,
  70. position: "right"
  71. },
  72. "itemStyle": {
  73. "normal": {
  74. "lineStyle": {
  75. "shadowColor": "rgba(0,0,0,0.4)"
  76. },
  77. barBorderRadius: [0, 8, 8, 0],
  78. color: '#00e6f3'
  79. }
  80. },
  81. "data": series0data
  82. }, ]
  83. }
  84. return option
  85. },
  86. xingbieChart = function(options){
  87. console.log(options)
  88. var title = options.title.text;
  89. var data = options.series[0].data;
  90. var legend = data.map(function(item){
  91. return item.name;
  92. })
  93. var option = {
  94. "title": {
  95. "text": title,
  96. "x": "center",
  97. "textStyle": {
  98. color: ['#b5e1fc']
  99. },
  100. "padding": [10, 0, 0, 0]
  101. },
  102. "tooltip": {
  103. "trigger": "item"
  104. },
  105. legend: {
  106. orient: 'vertical',
  107. // x: 'right',
  108. data: legend,
  109. right: '25%',
  110. top: '40%',
  111. textStyle: {
  112. color: ['#b5e1fc']
  113. }
  114. },
  115. "series": [{
  116. "center": [
  117. "35%",
  118. "50%"
  119. ],
  120. radius: ['30%', '40%'],
  121. "name": "",
  122. "type": "pie",
  123. "itemStyle": {
  124. "normal": {
  125. "label": {
  126. "show": false
  127. },
  128. "labelLine": {
  129. "show": false
  130. }
  131. }
  132. },
  133. "data": data
  134. }]
  135. }
  136. return option
  137. },
  138. jibingTopChart = function(options){
  139. var title = options.title.text;
  140. var yAxisData = options.xAxis[0].data
  141. var xAxisData = options.series[0].data
  142. var option = {
  143. "title": {
  144. "text": title,
  145. "x": "center",
  146. "textStyle": {
  147. color: ['#b5e1fc']
  148. },
  149. "padding": [10, 0, 0, 0]
  150. },
  151. "tooltip": {
  152. "trigger": "axis"
  153. },
  154. grid: {
  155. top: 40,
  156. bottom: 30,
  157. left: 80
  158. },
  159. "yAxis": [{
  160. "type": "category",
  161. "name": "",
  162. "data": yAxisData,
  163. axisPointer: {
  164. type: 'shadow'
  165. },
  166. axisTick: {
  167. show: false
  168. },
  169. axisLine: {
  170. lineStyle: {
  171. color: '#095f8e'
  172. }
  173. },
  174. axisLabel: {
  175. color: '#b5e1fc'
  176. },
  177. nameTextStyle: {
  178. color: '#b5e1fc'
  179. }
  180. }],
  181. "xAxis": [{
  182. "type": "value",
  183. axisPointer: {
  184. type: 'shadow'
  185. },
  186. axisTick: {
  187. show: false
  188. },
  189. axisLine: {
  190. lineStyle: {
  191. color: '#095f8e'
  192. }
  193. },
  194. axisLabel: {
  195. color: '#fff'
  196. },
  197. splitLine: {
  198. show: false // 不显示坐标轴刻度
  199. }
  200. }],
  201. "series": [{
  202. "smooth": true,
  203. "name": "并发症排行",
  204. "type": "bar",
  205. barWidth: 20,
  206. "label": {
  207. show: false,
  208. position: "right"
  209. },
  210. "itemStyle": {
  211. "normal": {
  212. "lineStyle": {
  213. "shadowColor": "rgba(0,0,0,0.4)"
  214. },
  215. barBorderRadius: [0, 8, 8, 0],
  216. color: '#00e6f3'
  217. }
  218. },
  219. "data": xAxisData
  220. }, ]
  221. }
  222. return option
  223. },
  224. qushiChart = function(options){
  225. debugger
  226. console.log(options);
  227. var title = options.title.text;
  228. var xAxisData = options.xAxis[0].data;
  229. var series0data = options.series[0].data || [];
  230. var series1data = options.series[1].data || [];
  231. var option = {
  232. "title": {
  233. "text": title,
  234. "x": "center",
  235. textStyle: {
  236. color: '#b5e1fc',
  237. fontSize: 16,
  238. fontWeight: 'bold'
  239. },
  240. "padding": [10, 0, 0, 0]
  241. },
  242. tooltip: {
  243. trigger: 'axis',
  244. axisPointer: {
  245. type: 'cross',
  246. crossStyle: {
  247. color: '#fff'
  248. }
  249. }
  250. },
  251. "grid": {
  252. top: '90',
  253. left: '60',
  254. bottom:'25',
  255. right:'60'
  256. },
  257. legend: {
  258. data: ['新增人次', '环比'],
  259. textStyle: {
  260. color: '#b5e1fc'
  261. },
  262. top: '45'
  263. },
  264. xAxis: [{
  265. type: 'category',
  266. "data": xAxisData,
  267. axisPointer: {
  268. type: 'shadow'
  269. },
  270. axisTick: {
  271. show: false
  272. },
  273. axisLine: {
  274. lineStyle: {
  275. color: '#095f8e'
  276. }
  277. },
  278. axisLabel: {
  279. color: '#b5e1fc'
  280. }
  281. }],
  282. yAxis: [{
  283. type: 'value',
  284. name: '新增人次',
  285. nameTextStyle: {
  286. color: '#b5e1fc' // 坐标轴名称颜色
  287. },
  288. splitLine: {
  289. show: false
  290. },
  291. axisLine: {
  292. lineStyle: {
  293. color: '#095f8e'
  294. }
  295. },
  296. axisLabel: {
  297. color: '#b5e1fc'
  298. }
  299. },
  300. {
  301. type: 'value',
  302. name: '环比',
  303. nameTextStyle: {
  304. color: '#b5e1fc' // 坐标轴名称颜色
  305. },
  306. splitLine: {
  307. show: false // 不显示坐标轴刻度
  308. },
  309. axisLine: {
  310. lineStyle: {
  311. color: '#095f8e' // 坐标轴轴线颜色
  312. }
  313. },
  314. axisLabel: {
  315. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  316. }
  317. }
  318. ],
  319. series: [{
  320. name: '新增人次',
  321. type: 'bar',
  322. "data":series0data,
  323. barWidth: 20,
  324. label: {
  325. normal: {
  326. show: true,
  327. position: 'top', // 在柱状图上方显示
  328. color: '#fff' // 柱状图上方显示的数值颜色
  329. }
  330. },
  331. itemStyle: {
  332. barBorderRadius: [8, 8, 0, 0],
  333. color: '#00e6f3'
  334. }
  335. },
  336. {
  337. name: '环比',
  338. type: 'line',
  339. yAxisIndex: 1,
  340. "data": series1data,
  341. itemStyle: {
  342. color: '#03fa6d'
  343. }
  344. }
  345. ]
  346. }
  347. return option
  348. },
  349. nianlingChart = function(options){
  350. var title = options.title.text;
  351. var data = options.series[0].data
  352. var legend = data.map(function(item){
  353. return item.name;
  354. })
  355. var option = {
  356. "title": {
  357. "text": title,
  358. "x": "center",
  359. "textStyle": {
  360. color: ['#b5e1fc']
  361. },
  362. "padding": [10, 0, 0, 0]
  363. },
  364. "tooltip": {
  365. "trigger": "item"
  366. },
  367. legend: {
  368. orient: 'vertical',
  369. data: legend,
  370. right: '15%',
  371. top: '25%',
  372. textStyle: {
  373. color: ['#b5e1fc']
  374. }
  375. },
  376. "series": [{
  377. "center": [
  378. "35%",
  379. "50%"
  380. ],
  381. radius: ['30%', '40%'],
  382. "name": "",
  383. "type": "pie",
  384. "itemStyle": {
  385. "normal": {
  386. "label": {
  387. "show": false
  388. },
  389. "labelLine": {
  390. "show": false
  391. }
  392. }
  393. },
  394. "data": data
  395. }]
  396. }
  397. return option
  398. }