medicalCharts.js 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. var leftChart1DataFormat = function(options) {
  2. debugger
  3. var xAxisData = _.map(options.xAxis[0].data, function(item, idx) {
  4. item = parseInt(item.substring(5, 7)) + "月";
  5. return item;
  6. });
  7. var series0data = options.series[0].data || [];
  8. var series1data = options.series[1].data || [];
  9. var option = {
  10. "title": {
  11. "text": "门诊人次月趋势",
  12. "x": "center",
  13. textStyle: {
  14. color: '#b5e1fc',
  15. fontSize: 16,
  16. fontWeight: 'bold'
  17. }
  18. },
  19. tooltip: {
  20. trigger: 'axis',
  21. axisPointer: {
  22. type: 'cross',
  23. crossStyle: {
  24. color: '#fff'
  25. }
  26. },
  27. formatter: '{b} <br /> {a0}: {c0}<br />{a1}: {c1}' + "%"
  28. },
  29. "grid": {
  30. top: '70',
  31. left: '75',
  32. bottom: '40'
  33. },
  34. legend: {
  35. data: ['门诊人次', '环比'],
  36. textStyle: {
  37. color: '#b5e1fc'
  38. },
  39. top: '40'
  40. },
  41. xAxis: [{
  42. type: 'category',
  43. data: xAxisData,
  44. axisPointer: {
  45. type: 'shadow'
  46. },
  47. axisTick: {
  48. show: false
  49. },
  50. axisLine: {
  51. lineStyle: {
  52. color: '#095f8e'
  53. }
  54. },
  55. axisLabel: {
  56. color: '#b5e1fc',
  57. fontSize: 14
  58. }
  59. }],
  60. yAxis: [{
  61. type: 'value',
  62. name: '门诊人次',
  63. nameTextStyle: {
  64. color: '#b5e1fc' // 坐标轴名称颜色
  65. },
  66. splitLine: {
  67. show: false
  68. },
  69. axisLine: {
  70. lineStyle: {
  71. color: '#095f8e'
  72. }
  73. },
  74. axisLabel: {
  75. color: '#b5e1fc',
  76. fontSize: 14
  77. }
  78. },
  79. {
  80. type: 'value',
  81. name: '环比',
  82. nameTextStyle: {
  83. color: '#b5e1fc' // 坐标轴名称颜色
  84. },
  85. splitLine: {
  86. show: false // 不显示坐标轴刻度
  87. },
  88. axisLine: {
  89. lineStyle: {
  90. color: '#095f8e' // 坐标轴轴线颜色
  91. }
  92. },
  93. axisLabel: {
  94. color: '#b5e1fc', // 坐标轴刻度标签文本颜色
  95. fontSize: 14
  96. },
  97. show: true
  98. }
  99. ],
  100. series: [{
  101. name: '门诊人次',
  102. type: 'bar',
  103. "data": series0data,
  104. barWidth: 20,
  105. label: {
  106. normal: {
  107. show: true,
  108. position: 'top', // 在柱状图上方显示
  109. color: '#fff' // 柱状图上方显示的数值颜色
  110. }
  111. },
  112. itemStyle: {
  113. barBorderRadius: [8, 8, 0, 0],
  114. color: '#00e6f3'
  115. }
  116. },
  117. {
  118. name: '环比',
  119. type: 'line',
  120. yAxisIndex: 1,
  121. "data": series1data,
  122. itemStyle: {
  123. color: '#03fa6d'
  124. }
  125. }
  126. ]
  127. }
  128. return option;
  129. },
  130. leftChart2DataFormat = function(options){
  131. var xAxisData = _.map(options.xAxis[0].data, function(item, idx) {
  132. item = parseInt(item.substring(5, 7)) + "月";
  133. return item;
  134. });
  135. var series0data = options.series[0].data || [];;
  136. var series1data = options.series[1].data || [];;
  137. var option = {
  138. "title": {
  139. "text": "住院人次月趋势",
  140. "x": "center",
  141. textStyle: {
  142. color: '#b5e1fc',
  143. fontSize: 16,
  144. fontWeight: 'bold'
  145. }
  146. },
  147. tooltip: {
  148. trigger: 'axis',
  149. axisPointer: {
  150. type: 'cross',
  151. crossStyle: {
  152. color: '#fff'
  153. }
  154. }
  155. },
  156. "grid": {
  157. top: '70',
  158. left: '70',
  159. bottom: '40'
  160. },
  161. legend: {
  162. data: ['住院人次', '环比'],
  163. textStyle: {
  164. color: '#b5e1fc'
  165. },
  166. top: '40'
  167. },
  168. xAxis: [{
  169. type: 'category',
  170. data: xAxisData,
  171. axisPointer: {
  172. type: 'shadow'
  173. },
  174. axisTick: {
  175. show: false
  176. },
  177. axisLine: {
  178. lineStyle: {
  179. color: '#095f8e'
  180. }
  181. },
  182. axisLabel: {
  183. color: '#b5e1fc',
  184. fontSize: 14
  185. }
  186. }],
  187. yAxis: [{
  188. type: 'value',
  189. name: '住院人次',
  190. nameTextStyle: {
  191. color: '#b5e1fc' // 坐标轴名称颜色
  192. },
  193. splitLine: {
  194. show: false
  195. },
  196. axisLine: {
  197. lineStyle: {
  198. color: '#095f8e'
  199. }
  200. },
  201. axisLabel: {
  202. color: '#b5e1fc',
  203. fontSize: 14
  204. }
  205. },
  206. {
  207. type: 'value',
  208. name: '环比',
  209. nameTextStyle: {
  210. color: '#b5e1fc' // 坐标轴名称颜色
  211. },
  212. splitLine: {
  213. show: false // 不显示坐标轴刻度
  214. },
  215. axisLine: {
  216. lineStyle: {
  217. color: '#095f8e' // 坐标轴轴线颜色
  218. }
  219. },
  220. axisLabel: {
  221. color: '#b5e1fc', // 坐标轴刻度标签文本颜色
  222. fontSize: 14
  223. },
  224. show:true
  225. }
  226. ],
  227. series: [{
  228. name: '住院人次',
  229. type: 'bar',
  230. "data": series0data,
  231. barWidth: 20,
  232. label: {
  233. normal: {
  234. show: true,
  235. position: 'top', // 在柱状图上方显示
  236. color: '#fff' // 柱状图上方显示的数值颜色
  237. }
  238. },
  239. itemStyle: {
  240. barBorderRadius: [8, 8, 0, 0],
  241. color: '#ff616f'
  242. }
  243. },
  244. {
  245. name: '环比',
  246. type: 'line',
  247. yAxisIndex: 1,
  248. "data": series1data,
  249. itemStyle: {
  250. color: '#03fa6d'
  251. }
  252. }
  253. ]
  254. }
  255. return option;
  256. },
  257. rightChart1DataFormat = function(options){
  258. var xAxisData = _.map(options.xAxis[0].data, function(item, idx) {
  259. item = parseInt(item.substring(5, 7)) + "月";
  260. return item;
  261. });
  262. var series0data = options.series[0].data || [];
  263. var series1data = options.series[1].data || [];
  264. var series2data = options.series[2].data || [];
  265. var series3data = options.series[3].data || [];
  266. var option = {
  267. "title": {
  268. "text": "门诊分类别月趋势",
  269. "x": "center",
  270. textStyle: {
  271. color: '#b5e1fc',
  272. fontSize: 16,
  273. fontWeight: 'bold'
  274. }
  275. },
  276. tooltip: {
  277. trigger: 'axis',
  278. axisPointer: {
  279. type: 'cross',
  280. crossStyle: {
  281. color: '#fff'
  282. }
  283. },
  284. formatter: '{b} <br /> {a0}: {c0}<br />{a1}: {c1}' + "%"
  285. },
  286. "grid":{
  287. top: '80',
  288. left: '80',
  289. bottom: '30'
  290. },
  291. legend: {
  292. data: ['普通号', '专家号', '普通号环比', '专家号环比'],
  293. textStyle: {
  294. color: '#b5e1fc'
  295. },
  296. top: '30',
  297. itemWidth: 10
  298. },
  299. xAxis: [{
  300. type: 'category',
  301. data: xAxisData,
  302. axisPointer: {
  303. type: 'shadow'
  304. },
  305. axisTick: {
  306. show: false
  307. },
  308. axisLine: {
  309. lineStyle: {
  310. color: '#095f8e'
  311. }
  312. },
  313. axisLabel: {
  314. color: '#b5e1fc',
  315. fontSize: 14
  316. }
  317. }],
  318. yAxis: [{
  319. type: 'value',
  320. name: '人次',
  321. nameTextStyle: {
  322. color: '#b5e1fc' // 坐标轴名称颜色
  323. },
  324. splitLine: {
  325. show: false
  326. },
  327. axisLine: {
  328. lineStyle: {
  329. color: '#095f8e'
  330. }
  331. },
  332. axisLabel: {
  333. color: '#b5e1fc',
  334. fontSize: 14
  335. },
  336. splitNumber: 2
  337. },
  338. {
  339. type: 'value',
  340. name: '环比',
  341. nameTextStyle: {
  342. color: '#b5e1fc' // 坐标轴名称颜色
  343. },
  344. splitLine: {
  345. show: false // 不显示坐标轴刻度
  346. },
  347. axisLine: {
  348. lineStyle: {
  349. color: '#095f8e' // 坐标轴轴线颜色
  350. }
  351. },
  352. axisLabel: {
  353. color: '#b5e1fc', // 坐标轴刻度标签文本颜色
  354. fontSize: 14
  355. },
  356. show:true
  357. }
  358. ],
  359. series: [{
  360. name: '普通号',
  361. type: 'bar',
  362. "data": series0data,
  363. barWidth: 20,
  364. label: {
  365. normal: {
  366. show: true,
  367. position: 'top', // 在柱状图上方显示
  368. color: '#fff', // 柱状图上方显示的数值颜色
  369. fontSize: 11
  370. }
  371. },
  372. itemStyle: {
  373. barBorderRadius: [8, 8, 0, 0],
  374. color: '#00e6f3'
  375. }
  376. },
  377. {
  378. name: '专家号',
  379. type: 'bar',
  380. "data": series1data,
  381. barWidth: 20,
  382. label: {
  383. normal: {
  384. show: true,
  385. position: 'top', // 在柱状图上方显示
  386. color: '#fff', // 柱状图上方显示的数值颜色
  387. fontSize: 11
  388. }
  389. },
  390. itemStyle: {
  391. barBorderRadius: [8, 8, 0, 0],
  392. color: '#fff71a'
  393. }
  394. },
  395. {
  396. name: '普通号环比',
  397. type: 'line',
  398. yAxisIndex: 1,
  399. "data": series2data,
  400. itemStyle: {
  401. color: '#03fa6d'
  402. }
  403. },
  404. {
  405. name: '专家号环比',
  406. type: 'line',
  407. yAxisIndex: 1,
  408. "data": series3data,
  409. itemStyle: {
  410. color: '#ff616f'
  411. }
  412. },
  413. ]
  414. }
  415. return option;
  416. },
  417. rightChart2DataFormat = function(options){
  418. var xAxisData = _.map(options.xAxis[0].data, function(item, idx) {
  419. item = parseInt(item.substring(5, 7)) + "月";
  420. return item;
  421. });
  422. var series0data = options.series[0].data || [];;
  423. var series1data = options.series[1].data || [];;
  424. var option = {
  425. "title": {
  426. "text": "住院平均日数月趋势",
  427. "x": "center",
  428. textStyle: {
  429. color: '#b5e1fc',
  430. fontSize: 16,
  431. fontWeight: 'bold'
  432. }
  433. },
  434. tooltip: {
  435. trigger: 'axis',
  436. axisPointer: {
  437. type: 'cross',
  438. crossStyle: {
  439. color: '#fff'
  440. }
  441. },
  442. formatter:'{b} <br /> {a0}: {c0}<br />{a1}: {c1}' + "%"
  443. },
  444. "grid": {
  445. top: '70',
  446. left: '60',
  447. bottom: '30'
  448. },
  449. legend: {
  450. data: ['住院平均床日数', '环比'],
  451. textStyle: {
  452. color: '#b5e1fc'
  453. },
  454. top: '30'
  455. },
  456. xAxis: [{
  457. type: 'category',
  458. data: xAxisData,
  459. axisPointer: {
  460. type: 'shadow'
  461. },
  462. axisTick: {
  463. show: false
  464. },
  465. axisLine: {
  466. lineStyle: {
  467. color: '#095f8e'
  468. }
  469. },
  470. axisLabel: {
  471. color: '#b5e1fc',
  472. fontSize: 14
  473. }
  474. }],
  475. yAxis: [{
  476. type: 'value',
  477. name: '天',
  478. nameTextStyle: {
  479. color: '#b5e1fc' // 坐标轴名称颜色
  480. },
  481. splitLine: {
  482. show: false
  483. },
  484. axisLine: {
  485. lineStyle: {
  486. color: '#095f8e'
  487. }
  488. },
  489. axisLabel: {
  490. color: '#b5e1fc',
  491. fontSize: 14
  492. },
  493. splitNumber: 2
  494. },
  495. {
  496. type: 'value',
  497. name: '环比',
  498. nameTextStyle: {
  499. color: '#b5e1fc' // 坐标轴名称颜色
  500. },
  501. splitLine: {
  502. show: false // 不显示坐标轴刻度
  503. },
  504. axisLine: {
  505. lineStyle: {
  506. color: '#095f8e' // 坐标轴轴线颜色
  507. }
  508. },
  509. axisLabel: {
  510. color: '#b5e1fc', // 坐标轴刻度标签文本颜色
  511. fontSize: 14
  512. },
  513. show:true
  514. }
  515. ],
  516. series: [{
  517. name: '住院平均床日数',
  518. type: 'bar',
  519. "data": series0data,
  520. barWidth: 20,
  521. label: {
  522. normal: {
  523. show: true,
  524. position: 'top', // 在柱状图上方显示
  525. color: '#fff' // 柱状图上方显示的数值颜色
  526. }
  527. },
  528. itemStyle: {
  529. barBorderRadius: [8, 8, 0, 0],
  530. color: '#00e6f3'
  531. }
  532. },
  533. {
  534. name: '环比',
  535. type: 'line',
  536. yAxisIndex: 1,
  537. "data": series1data,
  538. itemStyle: {
  539. color: '#03fa6d'
  540. }
  541. }
  542. ]
  543. }
  544. return option;
  545. }