medicalCharts.js 11 KB

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