alert-data2.js 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532
  1. var bigData2 = {
  2. "总人数": "242365",
  3. "新增人数": "360",
  4. "门诊人次": "165896",
  5. "住院人次": "16469",
  6. "全部": {
  7. "区县分布": {
  8. "title": {
  9. "text": "区县分布",
  10. "x": "center",
  11. "textStyle": {
  12. color: ['#b5e1fc']
  13. },
  14. "padding": [10, 0, 0, 0]
  15. },
  16. "tooltip": {
  17. "trigger": "axis"
  18. },
  19. grid: {
  20. top: 80,
  21. bottom: 30,
  22. left: 80
  23. },
  24. "yAxis": [{
  25. "type": "category",
  26. "name": "人次",
  27. "data": [
  28. "覃塘区",
  29. "港南区",
  30. "港北区",
  31. "平南县",
  32. "桂平市",
  33. ],
  34. axisPointer: {
  35. type: 'shadow'
  36. },
  37. axisTick: {
  38. show: false
  39. },
  40. axisLine: {
  41. lineStyle: {
  42. color: '#095f8e'
  43. }
  44. },
  45. axisLabel: {
  46. color: '#b5e1fc'
  47. },
  48. nameTextStyle: {
  49. color: '#b5e1fc'
  50. }
  51. }],
  52. "xAxis": [{
  53. "type": "value",
  54. axisPointer: {
  55. type: 'shadow'
  56. },
  57. axisTick: {
  58. show: false
  59. },
  60. axisLine: {
  61. lineStyle: {
  62. color: '#095f8e'
  63. }
  64. },
  65. axisLabel: {
  66. color: '#fff'
  67. },
  68. splitLine: {
  69. show: false // 不显示坐标轴刻度
  70. }
  71. }],
  72. "series": [{
  73. "smooth": true,
  74. "name": "区县分布",
  75. "type": "bar",
  76. barWidth: 20,
  77. "label": {
  78. show: false,
  79. position: "right"
  80. },
  81. "itemStyle": {
  82. "normal": {
  83. "lineStyle": {
  84. "shadowColor": "rgba(0,0,0,0.4)"
  85. },
  86. barBorderRadius: [0, 8, 8, 0],
  87. color: '#00e6f3'
  88. }
  89. },
  90. "data": [
  91. "12283",
  92. "24518",
  93. "36251",
  94. "65984",
  95. "103658",
  96. ]
  97. }, ]
  98. },
  99. "年龄段分布": {
  100. "title": {
  101. "text": "年龄段分布",
  102. "x": "center",
  103. "textStyle": {
  104. color: ['#b5e1fc']
  105. },
  106. "padding": [10, 0, 0, 0]
  107. },
  108. "tooltip": {
  109. "trigger": "item"
  110. },
  111. legend: {
  112. orient: 'vertical',
  113. data: ['0-6', '7-17', '18-40', '41-65', '> 65'],
  114. right: '15%',
  115. top: '25%',
  116. textStyle: {
  117. color: ['#b5e1fc']
  118. }
  119. },
  120. "series": [{
  121. "center": [
  122. "35%",
  123. "50%"
  124. ],
  125. radius: ['30%', '40%'],
  126. "name": "",
  127. "type": "pie",
  128. "itemStyle": {
  129. "normal": {
  130. "label": {
  131. "show": false
  132. },
  133. "labelLine": {
  134. "show": false
  135. }
  136. }
  137. },
  138. "data": [
  139. {
  140. "name": "0-6",
  141. "value": "0"
  142. },
  143. {
  144. "name": "7-17",
  145. "value": "2514"
  146. },
  147. {
  148. "name": "18-40",
  149. "value": "36542"
  150. },
  151. {
  152. "name": "41-65",
  153. "value": "118553"
  154. },
  155. {
  156. "name": "> 65",
  157. "value": "84756"
  158. }
  159. ]
  160. }]
  161. },
  162. "性别分布": {
  163. "title": {
  164. "text": "性别分布",
  165. "x": "center",
  166. "textStyle": {
  167. color: ['#b5e1fc']
  168. },
  169. "padding": [10, 0, 0, 0]
  170. },
  171. "tooltip": {
  172. "trigger": "item"
  173. },
  174. legend: {
  175. orient: 'vertical',
  176. // x: 'right',
  177. data: ['男', '女'],
  178. right: '25%',
  179. top: '40%',
  180. textStyle: {
  181. color: ['#b5e1fc']
  182. }
  183. },
  184. "series": [{
  185. "center": [
  186. "35%",
  187. "50%"
  188. ],
  189. radius: ['30%', '40%'],
  190. "name": "",
  191. "type": "pie",
  192. "itemStyle": {
  193. "normal": {
  194. "label": {
  195. "show": false
  196. },
  197. "labelLine": {
  198. "show": false
  199. }
  200. }
  201. },
  202. "data": [
  203. {
  204. "name": "男",
  205. "value": "143584"
  206. },
  207. {
  208. "name": "女",
  209. "value": "98781"
  210. }
  211. ]
  212. }]
  213. },
  214. "并发症": {
  215. "title": {
  216. "text": "并发症排行",
  217. "x": "center",
  218. "textStyle": {
  219. color: ['#b5e1fc']
  220. },
  221. "padding": [10, 0, 0, 0]
  222. },
  223. "tooltip": {
  224. "trigger": "axis"
  225. },
  226. grid: {
  227. top: 40,
  228. bottom: 30,
  229. left: 80
  230. },
  231. "yAxis": [{
  232. "type": "category",
  233. "name": "",
  234. "data": [
  235. "糖尿病神经病变",
  236. "糖尿病性脑血管病",
  237. "糖尿病足",
  238. "糖尿病眼部并发症",
  239. "糖尿病肾病",
  240. ],
  241. axisPointer: {
  242. type: 'shadow'
  243. },
  244. axisTick: {
  245. show: false
  246. },
  247. axisLine: {
  248. lineStyle: {
  249. color: '#095f8e'
  250. }
  251. },
  252. axisLabel: {
  253. color: '#b5e1fc'
  254. },
  255. nameTextStyle: {
  256. color: '#b5e1fc'
  257. }
  258. }],
  259. "xAxis": [{
  260. "type": "value",
  261. axisPointer: {
  262. type: 'shadow'
  263. },
  264. axisTick: {
  265. show: false
  266. },
  267. axisLine: {
  268. lineStyle: {
  269. color: '#095f8e'
  270. }
  271. },
  272. axisLabel: {
  273. color: '#fff'
  274. },
  275. splitLine: {
  276. show: false // 不显示坐标轴刻度
  277. }
  278. }],
  279. "series": [{
  280. "smooth": true,
  281. "name": "并发症排行",
  282. "type": "bar",
  283. barWidth: 20,
  284. "label": {
  285. show: false,
  286. position: "right"
  287. },
  288. "itemStyle": {
  289. "normal": {
  290. "lineStyle": {
  291. "shadowColor": "rgba(0,0,0,0.4)"
  292. },
  293. barBorderRadius: [0, 8, 8, 0],
  294. color: '#00e6f3'
  295. }
  296. },
  297. "data": [
  298. "846",
  299. "915",
  300. "1059",
  301. "1148",
  302. "1256",
  303. ]
  304. }, ]
  305. },
  306. "新增患者趋势": {
  307. "日": {
  308. "title": {
  309. "text": "新增患者趋势",
  310. "x": "center",
  311. textStyle: {
  312. color: '#b5e1fc',
  313. fontSize: 16,
  314. fontWeight: 'bold'
  315. }
  316. },
  317. tooltip: {
  318. trigger: 'axis',
  319. axisPointer: {
  320. type: 'cross',
  321. crossStyle: {
  322. color: '#fff'
  323. }
  324. }
  325. },
  326. "grid": {
  327. top: '90',
  328. left: '60'
  329. },
  330. legend: {
  331. data: ['新增人次', '环比'],
  332. textStyle: {
  333. color: '#b5e1fc'
  334. },
  335. top: '40'
  336. },
  337. xAxis: [{
  338. type: 'category',
  339. "data": [
  340. "2018-07-01",
  341. "2018-07-02",
  342. "2018-07-03",
  343. "2018-07-04",
  344. "2018-07-05",
  345. "2018-07-06",
  346. "2018-07-07",
  347. "2018-07-08"
  348. ],
  349. axisPointer: {
  350. type: 'shadow'
  351. },
  352. axisTick: {
  353. show: false
  354. },
  355. axisLine: {
  356. lineStyle: {
  357. color: '#095f8e'
  358. }
  359. },
  360. axisLabel: {
  361. color: '#b5e1fc'
  362. }
  363. }],
  364. yAxis: [{
  365. type: 'value',
  366. name: '新增人次',
  367. max: 10,
  368. nameTextStyle: {
  369. color: '#b5e1fc' // 坐标轴名称颜色
  370. },
  371. splitLine: {
  372. show: false
  373. },
  374. axisLine: {
  375. lineStyle: {
  376. color: '#095f8e'
  377. }
  378. },
  379. axisLabel: {
  380. color: '#b5e1fc'
  381. }
  382. },
  383. {
  384. type: 'value',
  385. name: '环比',
  386. min: 0,
  387. max: 10,
  388. nameTextStyle: {
  389. color: '#b5e1fc' // 坐标轴名称颜色
  390. },
  391. splitLine: {
  392. show: false // 不显示坐标轴刻度
  393. },
  394. axisLine: {
  395. lineStyle: {
  396. color: '#095f8e' // 坐标轴轴线颜色
  397. }
  398. },
  399. axisLabel: {
  400. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  401. }
  402. }
  403. ],
  404. series: [{
  405. name: '新增人次',
  406. type: 'bar',
  407. "data": [
  408. "1",
  409. "2",
  410. "1",
  411. "0",
  412. "1",
  413. "2",
  414. "1",
  415. "1"
  416. ],
  417. barWidth: 20,
  418. label: {
  419. normal: {
  420. show: true,
  421. position: 'top', // 在柱状图上方显示
  422. color: '#fff' // 柱状图上方显示的数值颜色
  423. }
  424. },
  425. itemStyle: {
  426. barBorderRadius: [8, 8, 0, 0],
  427. color: '#00e6f3'
  428. }
  429. },
  430. {
  431. name: '环比',
  432. type: 'line',
  433. yAxisIndex: 1,
  434. "data": [
  435. "5",
  436. "7",
  437. "7",
  438. "0",
  439. "5",
  440. "4",
  441. "5",
  442. "3"
  443. ],
  444. itemStyle: {
  445. color: '#03fa6d'
  446. }
  447. }
  448. ]
  449. },
  450. "月": {
  451. "title": {
  452. "text": "新增患者趋势",
  453. "x": "center",
  454. textStyle: {
  455. color: '#b5e1fc',
  456. fontSize: 16,
  457. fontWeight: 'bold'
  458. }
  459. },
  460. tooltip: {
  461. trigger: 'axis',
  462. axisPointer: {
  463. type: 'cross',
  464. crossStyle: {
  465. color: '#fff'
  466. }
  467. }
  468. },
  469. "grid": {
  470. top: '50',
  471. left: '60'
  472. },
  473. legend: {
  474. data: ['新增人次', '环比'],
  475. textStyle: {
  476. color: '#b5e1fc'
  477. },
  478. top: '40'
  479. },
  480. xAxis: [{
  481. type: 'category',
  482. "data": [
  483. "2018-01",
  484. "2018-02",
  485. "2018-03",
  486. "2018-04",
  487. "2018-05",
  488. "2018-06"
  489. ],
  490. axisPointer: {
  491. type: 'shadow'
  492. },
  493. axisTick: {
  494. show: false
  495. },
  496. axisLine: {
  497. lineStyle: {
  498. color: '#095f8e'
  499. }
  500. },
  501. axisLabel: {
  502. color: '#b5e1fc'
  503. }
  504. }],
  505. yAxis: [{
  506. type: 'value',
  507. name: '新增人次',
  508. max: 20,
  509. nameTextStyle: {
  510. color: '#b5e1fc' // 坐标轴名称颜色
  511. },
  512. splitLine: {
  513. show: false
  514. },
  515. axisLine: {
  516. lineStyle: {
  517. color: '#095f8e'
  518. }
  519. },
  520. axisLabel: {
  521. color: '#b5e1fc'
  522. }
  523. },
  524. {
  525. type: 'value',
  526. name: '环比',
  527. min: 0,
  528. max: 50,
  529. nameTextStyle: {
  530. color: '#b5e1fc' // 坐标轴名称颜色
  531. },
  532. splitLine: {
  533. show: false // 不显示坐标轴刻度
  534. },
  535. axisLine: {
  536. lineStyle: {
  537. color: '#095f8e' // 坐标轴轴线颜色
  538. }
  539. },
  540. axisLabel: {
  541. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  542. }
  543. }
  544. ],
  545. series: [{
  546. name: '新增人次',
  547. type: 'bar',
  548. "data": [
  549. "16",
  550. "17",
  551. "15",
  552. "15",
  553. "16",
  554. "17"
  555. ],
  556. barWidth: 20,
  557. label: {
  558. normal: {
  559. show: true,
  560. position: 'top', // 在柱状图上方显示
  561. color: '#fff' // 柱状图上方显示的数值颜色
  562. }
  563. },
  564. itemStyle: {
  565. barBorderRadius: [8, 8, 0, 0],
  566. color: '#00e6f3'
  567. }
  568. },
  569. {
  570. name: '环比',
  571. type: 'line',
  572. yAxisIndex: 1,
  573. "data": [
  574. "35",
  575. "37",
  576. "37",
  577. "39",
  578. "35",
  579. "34"
  580. ],
  581. itemStyle: {
  582. color: '#03fa6d'
  583. }
  584. }
  585. ]
  586. },
  587. "季": {
  588. "title": {
  589. "text": "新增患者趋势",
  590. "x": "center",
  591. textStyle: {
  592. color: '#b5e1fc',
  593. fontSize: 16,
  594. fontWeight: 'bold'
  595. }
  596. },
  597. tooltip: {
  598. trigger: 'axis',
  599. axisPointer: {
  600. type: 'cross',
  601. crossStyle: {
  602. color: '#fff'
  603. }
  604. }
  605. },
  606. "grid": {
  607. top: '50',
  608. left: '60'
  609. },
  610. legend: {
  611. data: ['新增人次', '环比'],
  612. textStyle: {
  613. color: '#b5e1fc'
  614. },
  615. top: '40'
  616. },
  617. xAxis: [{
  618. type: 'category',
  619. "data": [
  620. "2017季度3",
  621. "2017季度4",
  622. "2018季度1",
  623. "2018季度2"
  624. ],
  625. axisPointer: {
  626. type: 'shadow'
  627. },
  628. axisTick: {
  629. show: false
  630. },
  631. axisLine: {
  632. lineStyle: {
  633. color: '#095f8e'
  634. }
  635. },
  636. axisLabel: {
  637. color: '#b5e1fc'
  638. }
  639. }],
  640. yAxis: [{
  641. type: 'value',
  642. name: '新增人次',
  643. max: 60,
  644. nameTextStyle: {
  645. color: '#b5e1fc' // 坐标轴名称颜色
  646. },
  647. splitLine: {
  648. show: false
  649. },
  650. axisLine: {
  651. lineStyle: {
  652. color: '#095f8e'
  653. }
  654. },
  655. axisLabel: {
  656. color: '#b5e1fc'
  657. }
  658. },
  659. {
  660. type: 'value',
  661. name: '环比',
  662. min: 0,
  663. max: 50,
  664. nameTextStyle: {
  665. color: '#b5e1fc' // 坐标轴名称颜色
  666. },
  667. splitLine: {
  668. show: false // 不显示坐标轴刻度
  669. },
  670. axisLine: {
  671. lineStyle: {
  672. color: '#095f8e' // 坐标轴轴线颜色
  673. }
  674. },
  675. axisLabel: {
  676. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  677. }
  678. }
  679. ],
  680. series: [{
  681. name: '新增人次',
  682. type: 'bar',
  683. "data": [
  684. "46",
  685. "57",
  686. "45",
  687. "51"
  688. ],
  689. barWidth: 20,
  690. label: {
  691. normal: {
  692. show: true,
  693. position: 'top', // 在柱状图上方显示
  694. color: '#fff' // 柱状图上方显示的数值颜色
  695. }
  696. },
  697. itemStyle: {
  698. barBorderRadius: [8, 8, 0, 0],
  699. color: '#00e6f3'
  700. }
  701. },
  702. {
  703. name: '环比',
  704. type: 'line',
  705. yAxisIndex: 1,
  706. "data": [
  707. "35",
  708. "47",
  709. "30",
  710. "42"
  711. ],
  712. itemStyle: {
  713. color: '#03fa6d'
  714. }
  715. }
  716. ]
  717. },
  718. "年": {
  719. "title": {
  720. "text": "新增患者趋势",
  721. "x": "center",
  722. textStyle: {
  723. color: '#b5e1fc',
  724. fontSize: 16,
  725. fontWeight: 'bold'
  726. }
  727. },
  728. tooltip: {
  729. trigger: 'axis',
  730. axisPointer: {
  731. type: 'cross',
  732. crossStyle: {
  733. color: '#fff'
  734. }
  735. }
  736. },
  737. "grid": {
  738. top: '50',
  739. left: '60'
  740. },
  741. legend: {
  742. data: ['新增人次', '环比'],
  743. textStyle: {
  744. color: '#b5e1fc'
  745. },
  746. top: '40'
  747. },
  748. xAxis: [{
  749. type: 'category',
  750. "data": [
  751. "2016",
  752. "2017",
  753. "2018"
  754. ],
  755. axisPointer: {
  756. type: 'shadow'
  757. },
  758. axisTick: {
  759. show: false
  760. },
  761. axisLine: {
  762. lineStyle: {
  763. color: '#095f8e'
  764. }
  765. },
  766. axisLabel: {
  767. color: '#b5e1fc'
  768. }
  769. }],
  770. yAxis: [{
  771. type: 'value',
  772. name: '新增人次',
  773. max: 400,
  774. nameTextStyle: {
  775. color: '#b5e1fc' // 坐标轴名称颜色
  776. },
  777. splitLine: {
  778. show: false
  779. },
  780. axisLine: {
  781. lineStyle: {
  782. color: '#095f8e'
  783. }
  784. },
  785. axisLabel: {
  786. color: '#b5e1fc'
  787. }
  788. },
  789. {
  790. type: 'value',
  791. name: '环比',
  792. min: 0,
  793. max: 15,
  794. nameTextStyle: {
  795. color: '#b5e1fc' // 坐标轴名称颜色
  796. },
  797. splitLine: {
  798. show: false // 不显示坐标轴刻度
  799. },
  800. axisLine: {
  801. lineStyle: {
  802. color: '#095f8e' // 坐标轴轴线颜色
  803. }
  804. },
  805. axisLabel: {
  806. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  807. }
  808. }
  809. ],
  810. series: [{
  811. name: '新增人次',
  812. type: 'bar',
  813. "data": [
  814. "298",
  815. "356",
  816. "252"
  817. ],
  818. barWidth: 20,
  819. label: {
  820. normal: {
  821. show: true,
  822. position: 'top', // 在柱状图上方显示
  823. color: '#fff' // 柱状图上方显示的数值颜色
  824. }
  825. },
  826. itemStyle: {
  827. barBorderRadius: [8, 8, 0, 0],
  828. color: '#00e6f3'
  829. }
  830. },
  831. {
  832. name: '环比',
  833. type: 'line',
  834. yAxisIndex: 1,
  835. "data": [
  836. "9",
  837. "12",
  838. "8"
  839. ],
  840. itemStyle: {
  841. color: '#03fa6d'
  842. }
  843. }
  844. ]
  845. }
  846. }
  847. },
  848. "门诊": {
  849. "区县分布": {
  850. "title": {
  851. "text": "区县分布",
  852. "x": "center",
  853. "textStyle": {
  854. color: ['#b5e1fc']
  855. },
  856. "padding": [10, 0, 0, 0]
  857. },
  858. "tooltip": {
  859. "trigger": "axis"
  860. },
  861. grid: {
  862. top: 80,
  863. bottom: 30,
  864. left: 80
  865. },
  866. "yAxis": [{
  867. "type": "category",
  868. "name": "人次",
  869. "data": [
  870. "覃塘区",
  871. "港南区",
  872. "港北区",
  873. "平南县",
  874. "桂平市",
  875. ],
  876. axisPointer: {
  877. type: 'shadow'
  878. },
  879. axisTick: {
  880. show: false
  881. },
  882. axisLine: {
  883. lineStyle: {
  884. color: '#095f8e'
  885. }
  886. },
  887. axisLabel: {
  888. color: '#b5e1fc'
  889. },
  890. nameTextStyle: {
  891. color: '#b5e1fc'
  892. }
  893. }],
  894. "xAxis": [{
  895. "type": "value",
  896. axisPointer: {
  897. type: 'shadow'
  898. },
  899. axisTick: {
  900. show: false
  901. },
  902. axisLine: {
  903. lineStyle: {
  904. color: '#095f8e'
  905. }
  906. },
  907. axisLabel: {
  908. color: '#fff'
  909. },
  910. splitLine: {
  911. show: false // 不显示坐标轴刻度
  912. }
  913. }],
  914. "series": [{
  915. "smooth": true,
  916. "name": "区县分布",
  917. "type": "bar",
  918. barWidth: 20,
  919. "label": {
  920. show: false,
  921. position: "right"
  922. },
  923. "itemStyle": {
  924. "normal": {
  925. "lineStyle": {
  926. "shadowColor": "rgba(0,0,0,0.4)"
  927. },
  928. barBorderRadius: [0, 8, 8, 0],
  929. color: '#00e6f3'
  930. }
  931. },
  932. "data": [
  933. "11052",
  934. "18659",
  935. "28451",
  936. "49562",
  937. "75658",
  938. ]
  939. }, ]
  940. },
  941. "年龄段分布": {
  942. "title": {
  943. "text": "年龄段分布",
  944. "x": "center",
  945. "textStyle": {
  946. color: ['#b5e1fc']
  947. },
  948. "padding": [10, 0, 0, 0]
  949. },
  950. "tooltip": {
  951. "trigger": "item"
  952. },
  953. legend: {
  954. orient: 'vertical',
  955. data: ['0-6', '7-17', '18-40', '41-65', '> 65'],
  956. right: '15%',
  957. top: '25%',
  958. textStyle: {
  959. color: ['#b5e1fc']
  960. }
  961. },
  962. "series": [{
  963. "center": [
  964. "35%",
  965. "50%"
  966. ],
  967. radius: ['30%', '40%'],
  968. "name": "",
  969. "type": "pie",
  970. "itemStyle": {
  971. "normal": {
  972. "label": {
  973. "show": false
  974. },
  975. "labelLine": {
  976. "show": false
  977. }
  978. }
  979. },
  980. "data": [
  981. {
  982. "name": "0-6",
  983. "value": "0"
  984. },
  985. {
  986. "name": "7-17",
  987. "value": "2058"
  988. },
  989. {
  990. "name": "18-40",
  991. "value": "27568"
  992. },
  993. {
  994. "name": "41-65",
  995. "value": "92584"
  996. },
  997. {
  998. "name": "> 65",
  999. "value": "69584"
  1000. }
  1001. ]
  1002. }]
  1003. },
  1004. "性别分布": {
  1005. "title": {
  1006. "text": "性别分布",
  1007. "x": "center",
  1008. "textStyle": {
  1009. color: ['#b5e1fc']
  1010. },
  1011. "padding": [10, 0, 0, 0]
  1012. },
  1013. "tooltip": {
  1014. "trigger": "item"
  1015. },
  1016. legend: {
  1017. orient: 'vertical',
  1018. // x: 'right',
  1019. data: ['男', '女'],
  1020. right: '25%',
  1021. top: '40%',
  1022. textStyle: {
  1023. color: ['#b5e1fc']
  1024. }
  1025. },
  1026. "series": [{
  1027. "center": [
  1028. "35%",
  1029. "50%"
  1030. ],
  1031. radius: ['30%', '40%'],
  1032. "name": "",
  1033. "type": "pie",
  1034. "itemStyle": {
  1035. "normal": {
  1036. "label": {
  1037. "show": false
  1038. },
  1039. "labelLine": {
  1040. "show": false
  1041. }
  1042. }
  1043. },
  1044. "data": [
  1045. {
  1046. "name": "男",
  1047. "value": "85486"
  1048. },
  1049. {
  1050. "name": "女",
  1051. "value": "78564"
  1052. }
  1053. ]
  1054. }]
  1055. },
  1056. "并发症": {
  1057. "title": {
  1058. "text": "并发症排行",
  1059. "x": "center",
  1060. "textStyle": {
  1061. color: ['#b5e1fc']
  1062. },
  1063. "padding": [10, 0, 0, 0]
  1064. },
  1065. "tooltip": {
  1066. "trigger": "axis"
  1067. },
  1068. grid: {
  1069. top: 40,
  1070. bottom: 30,
  1071. left: 80
  1072. },
  1073. "yAxis": [{
  1074. "type": "category",
  1075. "name": "",
  1076. "data": [
  1077. "糖尿病神经病变",
  1078. "糖尿病性脑血管病",
  1079. "糖尿病足",
  1080. "糖尿病眼部并发症",
  1081. "糖尿病肾病",
  1082. ],
  1083. axisPointer: {
  1084. type: 'shadow'
  1085. },
  1086. axisTick: {
  1087. show: false
  1088. },
  1089. axisLine: {
  1090. lineStyle: {
  1091. color: '#095f8e'
  1092. }
  1093. },
  1094. axisLabel: {
  1095. color: '#b5e1fc'
  1096. },
  1097. nameTextStyle: {
  1098. color: '#b5e1fc'
  1099. }
  1100. }],
  1101. "xAxis": [{
  1102. "type": "value",
  1103. axisPointer: {
  1104. type: 'shadow'
  1105. },
  1106. axisTick: {
  1107. show: false
  1108. },
  1109. axisLine: {
  1110. lineStyle: {
  1111. color: '#095f8e'
  1112. }
  1113. },
  1114. axisLabel: {
  1115. color: '#fff'
  1116. },
  1117. splitLine: {
  1118. show: false // 不显示坐标轴刻度
  1119. }
  1120. }],
  1121. "series": [{
  1122. "smooth": true,
  1123. "name": "并发症排行",
  1124. "type": "bar",
  1125. barWidth: 20,
  1126. "label": {
  1127. show: false,
  1128. position: "right"
  1129. },
  1130. "itemStyle": {
  1131. "normal": {
  1132. "lineStyle": {
  1133. "shadowColor": "rgba(0,0,0,0.4)"
  1134. },
  1135. barBorderRadius: [0, 8, 8, 0],
  1136. color: '#00e6f3'
  1137. }
  1138. },
  1139. "data": [
  1140. "682",
  1141. "685",
  1142. "710",
  1143. "746",
  1144. "845",
  1145. ]
  1146. }, ]
  1147. },
  1148. "新增患者趋势": {
  1149. "日": {
  1150. "title": {
  1151. "text": "新增患者趋势",
  1152. "x": "center",
  1153. textStyle: {
  1154. color: '#b5e1fc',
  1155. fontSize: 16,
  1156. fontWeight: 'bold'
  1157. }
  1158. },
  1159. tooltip: {
  1160. trigger: 'axis',
  1161. axisPointer: {
  1162. type: 'cross',
  1163. crossStyle: {
  1164. color: '#fff'
  1165. }
  1166. }
  1167. },
  1168. "grid": {
  1169. top: '90',
  1170. left: '60'
  1171. },
  1172. legend: {
  1173. data: ['新增人次', '环比'],
  1174. textStyle: {
  1175. color: '#b5e1fc'
  1176. },
  1177. top: '40'
  1178. },
  1179. xAxis: [{
  1180. type: 'category',
  1181. "data": [
  1182. "2018-07-01",
  1183. "2018-07-02",
  1184. "2018-07-03",
  1185. "2018-07-04",
  1186. "2018-07-05",
  1187. "2018-07-06",
  1188. "2018-07-07",
  1189. "2018-07-08"
  1190. ],
  1191. axisPointer: {
  1192. type: 'shadow'
  1193. },
  1194. axisTick: {
  1195. show: false
  1196. },
  1197. axisLine: {
  1198. lineStyle: {
  1199. color: '#095f8e'
  1200. }
  1201. },
  1202. axisLabel: {
  1203. color: '#b5e1fc'
  1204. }
  1205. }],
  1206. yAxis: [{
  1207. type: 'value',
  1208. name: '新增人次',
  1209. max: 10,
  1210. nameTextStyle: {
  1211. color: '#b5e1fc' // 坐标轴名称颜色
  1212. },
  1213. splitLine: {
  1214. show: false
  1215. },
  1216. axisLine: {
  1217. lineStyle: {
  1218. color: '#095f8e'
  1219. }
  1220. },
  1221. axisLabel: {
  1222. color: '#b5e1fc'
  1223. }
  1224. },
  1225. {
  1226. type: 'value',
  1227. name: '环比',
  1228. min: 0,
  1229. max: 10,
  1230. nameTextStyle: {
  1231. color: '#b5e1fc' // 坐标轴名称颜色
  1232. },
  1233. splitLine: {
  1234. show: false // 不显示坐标轴刻度
  1235. },
  1236. axisLine: {
  1237. lineStyle: {
  1238. color: '#095f8e' // 坐标轴轴线颜色
  1239. }
  1240. },
  1241. axisLabel: {
  1242. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  1243. }
  1244. }
  1245. ],
  1246. series: [{
  1247. name: '新增人次',
  1248. type: 'bar',
  1249. "data": [
  1250. "0",
  1251. "1",
  1252. "1",
  1253. "0",
  1254. "1",
  1255. "1",
  1256. "0",
  1257. "1"
  1258. ],
  1259. barWidth: 20,
  1260. label: {
  1261. normal: {
  1262. show: true,
  1263. position: 'top', // 在柱状图上方显示
  1264. color: '#fff' // 柱状图上方显示的数值颜色
  1265. }
  1266. },
  1267. itemStyle: {
  1268. barBorderRadius: [8, 8, 0, 0],
  1269. color: '#00e6f3'
  1270. }
  1271. },
  1272. {
  1273. name: '环比',
  1274. type: 'line',
  1275. yAxisIndex: 1,
  1276. "data": [
  1277. "1",
  1278. "0",
  1279. "2",
  1280. "4",
  1281. "3",
  1282. "3",
  1283. "2",
  1284. "2"
  1285. ],
  1286. itemStyle: {
  1287. color: '#03fa6d'
  1288. }
  1289. }
  1290. ]
  1291. },
  1292. "月": {
  1293. "title": {
  1294. "text": "新增患者趋势",
  1295. "x": "center",
  1296. textStyle: {
  1297. color: '#b5e1fc',
  1298. fontSize: 16,
  1299. fontWeight: 'bold'
  1300. }
  1301. },
  1302. tooltip: {
  1303. trigger: 'axis',
  1304. axisPointer: {
  1305. type: 'cross',
  1306. crossStyle: {
  1307. color: '#fff'
  1308. }
  1309. }
  1310. },
  1311. "grid": {
  1312. top: '50',
  1313. left: '60'
  1314. },
  1315. legend: {
  1316. data: ['新增人次', '环比'],
  1317. textStyle: {
  1318. color: '#b5e1fc'
  1319. },
  1320. top: '40'
  1321. },
  1322. xAxis: [{
  1323. type: 'category',
  1324. "data": [
  1325. "2018-01",
  1326. "2018-02",
  1327. "2018-03",
  1328. "2018-04",
  1329. "2018-05",
  1330. "2018-06"
  1331. ],
  1332. axisPointer: {
  1333. type: 'shadow'
  1334. },
  1335. axisTick: {
  1336. show: false
  1337. },
  1338. axisLine: {
  1339. lineStyle: {
  1340. color: '#095f8e'
  1341. }
  1342. },
  1343. axisLabel: {
  1344. color: '#b5e1fc'
  1345. }
  1346. }],
  1347. yAxis: [{
  1348. type: 'value',
  1349. name: '新增人次',
  1350. max: 20,
  1351. nameTextStyle: {
  1352. color: '#b5e1fc' // 坐标轴名称颜色
  1353. },
  1354. splitLine: {
  1355. show: false
  1356. },
  1357. axisLine: {
  1358. lineStyle: {
  1359. color: '#095f8e'
  1360. }
  1361. },
  1362. axisLabel: {
  1363. color: '#b5e1fc'
  1364. }
  1365. },
  1366. {
  1367. type: 'value',
  1368. name: '环比',
  1369. min: 0,
  1370. max: 10,
  1371. nameTextStyle: {
  1372. color: '#b5e1fc' // 坐标轴名称颜色
  1373. },
  1374. splitLine: {
  1375. show: false // 不显示坐标轴刻度
  1376. },
  1377. axisLine: {
  1378. lineStyle: {
  1379. color: '#095f8e' // 坐标轴轴线颜色
  1380. }
  1381. },
  1382. axisLabel: {
  1383. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  1384. }
  1385. }
  1386. ],
  1387. series: [{
  1388. name: '新增人次',
  1389. type: 'bar',
  1390. "data": [
  1391. "12",
  1392. "10",
  1393. "11",
  1394. "9",
  1395. "10",
  1396. "11"
  1397. ],
  1398. barWidth: 20,
  1399. label: {
  1400. normal: {
  1401. show: true,
  1402. position: 'top', // 在柱状图上方显示
  1403. color: '#fff' // 柱状图上方显示的数值颜色
  1404. }
  1405. },
  1406. itemStyle: {
  1407. barBorderRadius: [8, 8, 0, 0],
  1408. color: '#00e6f3'
  1409. }
  1410. },
  1411. {
  1412. name: '环比',
  1413. type: 'line',
  1414. yAxisIndex: 1,
  1415. "data": [
  1416. "5",
  1417. "7",
  1418. "7",
  1419. "6",
  1420. "5",
  1421. "4"
  1422. ],
  1423. itemStyle: {
  1424. color: '#03fa6d'
  1425. }
  1426. }
  1427. ]
  1428. },
  1429. "季": {
  1430. "title": {
  1431. "text": "新增患者趋势",
  1432. "x": "center",
  1433. textStyle: {
  1434. color: '#b5e1fc',
  1435. fontSize: 16,
  1436. fontWeight: 'bold'
  1437. }
  1438. },
  1439. tooltip: {
  1440. trigger: 'axis',
  1441. axisPointer: {
  1442. type: 'cross',
  1443. crossStyle: {
  1444. color: '#fff'
  1445. }
  1446. }
  1447. },
  1448. "grid": {
  1449. top: '50',
  1450. left: '60'
  1451. },
  1452. legend: {
  1453. data: ['新增人次', '环比'],
  1454. textStyle: {
  1455. color: '#b5e1fc'
  1456. },
  1457. top: '40'
  1458. },
  1459. xAxis: [{
  1460. type: 'category',
  1461. "data": [
  1462. "2017季度3",
  1463. "2017季度4",
  1464. "2018季度1",
  1465. "2018季度2"
  1466. ],
  1467. axisPointer: {
  1468. type: 'shadow'
  1469. },
  1470. axisTick: {
  1471. show: false
  1472. },
  1473. axisLine: {
  1474. lineStyle: {
  1475. color: '#095f8e'
  1476. }
  1477. },
  1478. axisLabel: {
  1479. color: '#b5e1fc'
  1480. }
  1481. }],
  1482. yAxis: [{
  1483. type: 'value',
  1484. name: '新增人次',
  1485. max: 40,
  1486. nameTextStyle: {
  1487. color: '#b5e1fc' // 坐标轴名称颜色
  1488. },
  1489. splitLine: {
  1490. show: false
  1491. },
  1492. axisLine: {
  1493. lineStyle: {
  1494. color: '#095f8e'
  1495. }
  1496. },
  1497. axisLabel: {
  1498. color: '#b5e1fc'
  1499. }
  1500. },
  1501. {
  1502. type: 'value',
  1503. name: '环比',
  1504. min: 0,
  1505. max: 20,
  1506. nameTextStyle: {
  1507. color: '#b5e1fc' // 坐标轴名称颜色
  1508. },
  1509. splitLine: {
  1510. show: false // 不显示坐标轴刻度
  1511. },
  1512. axisLine: {
  1513. lineStyle: {
  1514. color: '#095f8e' // 坐标轴轴线颜色
  1515. }
  1516. },
  1517. axisLabel: {
  1518. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  1519. }
  1520. }
  1521. ],
  1522. series: [{
  1523. name: '新增人次',
  1524. type: 'bar',
  1525. "data": [
  1526. "29",
  1527. "34",
  1528. "31",
  1529. "34"
  1530. ],
  1531. barWidth: 20,
  1532. label: {
  1533. normal: {
  1534. show: true,
  1535. position: 'top', // 在柱状图上方显示
  1536. color: '#fff' // 柱状图上方显示的数值颜色
  1537. }
  1538. },
  1539. itemStyle: {
  1540. barBorderRadius: [8, 8, 0, 0],
  1541. color: '#00e6f3'
  1542. }
  1543. },
  1544. {
  1545. name: '环比',
  1546. type: 'line',
  1547. yAxisIndex: 1,
  1548. "data": [
  1549. "15",
  1550. "20",
  1551. "16",
  1552. "19"
  1553. ],
  1554. itemStyle: {
  1555. color: '#03fa6d'
  1556. }
  1557. }
  1558. ]
  1559. },
  1560. "年": {
  1561. "title": {
  1562. "text": "新增患者趋势",
  1563. "x": "center",
  1564. textStyle: {
  1565. color: '#b5e1fc',
  1566. fontSize: 16,
  1567. fontWeight: 'bold'
  1568. }
  1569. },
  1570. tooltip: {
  1571. trigger: 'axis',
  1572. axisPointer: {
  1573. type: 'cross',
  1574. crossStyle: {
  1575. color: '#fff'
  1576. }
  1577. }
  1578. },
  1579. "grid": {
  1580. top: '50',
  1581. left: '60'
  1582. },
  1583. legend: {
  1584. data: ['新增人次', '环比'],
  1585. textStyle: {
  1586. color: '#b5e1fc'
  1587. },
  1588. top: '40'
  1589. },
  1590. xAxis: [{
  1591. type: 'category',
  1592. "data": [
  1593. "2016",
  1594. "2017",
  1595. "2018"
  1596. ],
  1597. axisPointer: {
  1598. type: 'shadow'
  1599. },
  1600. axisTick: {
  1601. show: false
  1602. },
  1603. axisLine: {
  1604. lineStyle: {
  1605. color: '#095f8e'
  1606. }
  1607. },
  1608. axisLabel: {
  1609. color: '#b5e1fc'
  1610. }
  1611. }],
  1612. yAxis: [{
  1613. type: 'value',
  1614. name: '新增人次',
  1615. max: 200,
  1616. nameTextStyle: {
  1617. color: '#b5e1fc' // 坐标轴名称颜色
  1618. },
  1619. splitLine: {
  1620. show: false
  1621. },
  1622. axisLine: {
  1623. lineStyle: {
  1624. color: '#095f8e'
  1625. }
  1626. },
  1627. axisLabel: {
  1628. color: '#b5e1fc'
  1629. }
  1630. },
  1631. {
  1632. type: 'value',
  1633. name: '环比',
  1634. min: 0,
  1635. max: 40,
  1636. nameTextStyle: {
  1637. color: '#b5e1fc' // 坐标轴名称颜色
  1638. },
  1639. splitLine: {
  1640. show: false // 不显示坐标轴刻度
  1641. },
  1642. axisLine: {
  1643. lineStyle: {
  1644. color: '#095f8e' // 坐标轴轴线颜色
  1645. }
  1646. },
  1647. axisLabel: {
  1648. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  1649. }
  1650. }
  1651. ],
  1652. series: [{
  1653. name: '新增人次',
  1654. type: 'bar',
  1655. "data": [
  1656. "163",
  1657. "198",
  1658. "136"
  1659. ],
  1660. barWidth: 20,
  1661. label: {
  1662. normal: {
  1663. show: true,
  1664. position: 'top', // 在柱状图上方显示
  1665. color: '#fff' // 柱状图上方显示的数值颜色
  1666. }
  1667. },
  1668. itemStyle: {
  1669. barBorderRadius: [8, 8, 0, 0],
  1670. color: '#00e6f3'
  1671. }
  1672. },
  1673. {
  1674. name: '环比',
  1675. type: 'line',
  1676. yAxisIndex: 1,
  1677. "data": [
  1678. "35",
  1679. "39",
  1680. "25"
  1681. ],
  1682. itemStyle: {
  1683. color: '#03fa6d'
  1684. }
  1685. }
  1686. ]
  1687. }
  1688. }
  1689. },
  1690. "住院": {
  1691. "区县分布": {
  1692. "title": {
  1693. "text": "区县分布",
  1694. "x": "center",
  1695. "textStyle": {
  1696. color: ['#b5e1fc']
  1697. },
  1698. "padding": [10, 0, 0, 0]
  1699. },
  1700. "tooltip": {
  1701. "trigger": "axis"
  1702. },
  1703. grid: {
  1704. top: 80,
  1705. bottom: 30,
  1706. left: 80
  1707. },
  1708. "yAxis": [{
  1709. "type": "category",
  1710. "name": "人次",
  1711. "data": [
  1712. "覃塘区",
  1713. "港南区",
  1714. "港北区",
  1715. "平南县",
  1716. "桂平市",
  1717. ],
  1718. axisPointer: {
  1719. type: 'shadow'
  1720. },
  1721. axisTick: {
  1722. show: false
  1723. },
  1724. axisLine: {
  1725. lineStyle: {
  1726. color: '#095f8e'
  1727. }
  1728. },
  1729. axisLabel: {
  1730. color: '#b5e1fc'
  1731. },
  1732. nameTextStyle: {
  1733. color: '#b5e1fc'
  1734. }
  1735. }],
  1736. "xAxis": [{
  1737. "type": "value",
  1738. axisPointer: {
  1739. type: 'shadow'
  1740. },
  1741. axisTick: {
  1742. show: false
  1743. },
  1744. axisLine: {
  1745. lineStyle: {
  1746. color: '#095f8e'
  1747. }
  1748. },
  1749. axisLabel: {
  1750. color: '#fff'
  1751. },
  1752. splitLine: {
  1753. show: false // 不显示坐标轴刻度
  1754. }
  1755. }],
  1756. "series": [{
  1757. "smooth": true,
  1758. "name": "区县分布",
  1759. "type": "bar",
  1760. barWidth: 20,
  1761. "label": {
  1762. show: false,
  1763. position: "right"
  1764. },
  1765. "itemStyle": {
  1766. "normal": {
  1767. "lineStyle": {
  1768. "shadowColor": "rgba(0,0,0,0.4)"
  1769. },
  1770. barBorderRadius: [0, 8, 8, 0],
  1771. color: '#00e6f3'
  1772. }
  1773. },
  1774. "data": [
  1775. "1231",
  1776. "5849",
  1777. "7800",
  1778. "16422",
  1779. "27001",
  1780. ]
  1781. }, ]
  1782. },
  1783. "年龄段分布": {
  1784. "title": {
  1785. "text": "年龄段分布",
  1786. "x": "center",
  1787. "textStyle": {
  1788. color: ['#b5e1fc']
  1789. },
  1790. "padding": [10, 0, 0, 0]
  1791. },
  1792. "tooltip": {
  1793. "trigger": "item"
  1794. },
  1795. legend: {
  1796. orient: 'vertical',
  1797. data: ['0-6', '7-17', '18-40', '41-65', '> 65'],
  1798. right: '15%',
  1799. top: '25%',
  1800. textStyle: {
  1801. color: ['#b5e1fc']
  1802. }
  1803. },
  1804. "series": [{
  1805. "center": [
  1806. "35%",
  1807. "50%"
  1808. ],
  1809. radius: ['30%', '40%'],
  1810. "name": "",
  1811. "type": "pie",
  1812. "itemStyle": {
  1813. "normal": {
  1814. "label": {
  1815. "show": false
  1816. },
  1817. "labelLine": {
  1818. "show": false
  1819. }
  1820. }
  1821. },
  1822. "data": [
  1823. {
  1824. "name": "0-6",
  1825. "value": "0"
  1826. },
  1827. {
  1828. "name": "7-17",
  1829. "value": "457"
  1830. },
  1831. {
  1832. "name": "18-40",
  1833. "value": "8974"
  1834. },
  1835. {
  1836. "name": "41-65",
  1837. "value": "25969"
  1838. },
  1839. {
  1840. "name": "> 65",
  1841. "value": "15172"
  1842. }
  1843. ]
  1844. }]
  1845. },
  1846. "性别分布": {
  1847. "title": {
  1848. "text": "性别分布",
  1849. "x": "center",
  1850. "textStyle": {
  1851. color: ['#b5e1fc']
  1852. },
  1853. "padding": [10, 0, 0, 0]
  1854. },
  1855. "tooltip": {
  1856. "trigger": "item"
  1857. },
  1858. legend: {
  1859. orient: 'vertical',
  1860. // x: 'right',
  1861. data: ['男', '女'],
  1862. right: '25%',
  1863. top: '40%',
  1864. textStyle: {
  1865. color: ['#b5e1fc']
  1866. }
  1867. },
  1868. "series": [{
  1869. "center": [
  1870. "35%",
  1871. "50%"
  1872. ],
  1873. radius: ['30%', '40%'],
  1874. "name": "",
  1875. "type": "pie",
  1876. "itemStyle": {
  1877. "normal": {
  1878. "label": {
  1879. "show": false
  1880. },
  1881. "labelLine": {
  1882. "show": false
  1883. }
  1884. }
  1885. },
  1886. "data": [
  1887. {
  1888. "name": "男",
  1889. "value": "58098"
  1890. },
  1891. {
  1892. "name": "女",
  1893. "value": "20217"
  1894. }
  1895. ]
  1896. }]
  1897. },
  1898. "并发症": {
  1899. "title": {
  1900. "text": "并发症排行",
  1901. "x": "center",
  1902. "textStyle": {
  1903. color: ['#b5e1fc']
  1904. },
  1905. "padding": [10, 0, 0, 0]
  1906. },
  1907. "tooltip": {
  1908. "trigger": "axis"
  1909. },
  1910. grid: {
  1911. top: 40,
  1912. bottom: 30,
  1913. left: 80
  1914. },
  1915. "yAxis": [{
  1916. "type": "category",
  1917. "name": "",
  1918. "data": [
  1919. "糖尿病神经病变",
  1920. "糖尿病性脑血管病",
  1921. "糖尿病足",
  1922. "糖尿病眼部并发症",
  1923. "糖尿病肾病",
  1924. ],
  1925. axisPointer: {
  1926. type: 'shadow'
  1927. },
  1928. axisTick: {
  1929. show: false
  1930. },
  1931. axisLine: {
  1932. lineStyle: {
  1933. color: '#095f8e'
  1934. }
  1935. },
  1936. axisLabel: {
  1937. color: '#b5e1fc'
  1938. },
  1939. nameTextStyle: {
  1940. color: '#b5e1fc'
  1941. }
  1942. }],
  1943. "xAxis": [{
  1944. "type": "value",
  1945. axisPointer: {
  1946. type: 'shadow'
  1947. },
  1948. axisTick: {
  1949. show: false
  1950. },
  1951. axisLine: {
  1952. lineStyle: {
  1953. color: '#095f8e'
  1954. }
  1955. },
  1956. axisLabel: {
  1957. color: '#fff'
  1958. },
  1959. splitLine: {
  1960. show: false // 不显示坐标轴刻度
  1961. }
  1962. }],
  1963. "series": [{
  1964. "smooth": true,
  1965. "name": "并发症排行",
  1966. "type": "bar",
  1967. barWidth: 20,
  1968. "label": {
  1969. show: false,
  1970. position: "right"
  1971. },
  1972. "itemStyle": {
  1973. "normal": {
  1974. "lineStyle": {
  1975. "shadowColor": "rgba(0,0,0,0.4)"
  1976. },
  1977. barBorderRadius: [0, 8, 8, 0],
  1978. color: '#00e6f3'
  1979. }
  1980. },
  1981. "data": [
  1982. "164",
  1983. "230",
  1984. "349",
  1985. "402",
  1986. "411",
  1987. ]
  1988. }, ]
  1989. },
  1990. "新增患者趋势": {
  1991. "日": {
  1992. "title": {
  1993. "text": "新增患者趋势",
  1994. "x": "center",
  1995. textStyle: {
  1996. color: '#b5e1fc',
  1997. fontSize: 16,
  1998. fontWeight: 'bold'
  1999. }
  2000. },
  2001. tooltip: {
  2002. trigger: 'axis',
  2003. axisPointer: {
  2004. type: 'cross',
  2005. crossStyle: {
  2006. color: '#fff'
  2007. }
  2008. }
  2009. },
  2010. "grid": {
  2011. top: '90',
  2012. left: '60'
  2013. },
  2014. legend: {
  2015. data: ['新增人次', '环比'],
  2016. textStyle: {
  2017. color: '#b5e1fc'
  2018. },
  2019. top: '40'
  2020. },
  2021. xAxis: [{
  2022. type: 'category',
  2023. "data": [
  2024. "2018-07-01",
  2025. "2018-07-02",
  2026. "2018-07-03",
  2027. "2018-07-04",
  2028. "2018-07-05",
  2029. "2018-07-06",
  2030. "2018-07-07",
  2031. "2018-07-08"
  2032. ],
  2033. axisPointer: {
  2034. type: 'shadow'
  2035. },
  2036. axisTick: {
  2037. show: false
  2038. },
  2039. axisLine: {
  2040. lineStyle: {
  2041. color: '#095f8e'
  2042. }
  2043. },
  2044. axisLabel: {
  2045. color: '#b5e1fc'
  2046. }
  2047. }],
  2048. yAxis: [{
  2049. type: 'value',
  2050. name: '新增人次',
  2051. max: 10,
  2052. nameTextStyle: {
  2053. color: '#b5e1fc' // 坐标轴名称颜色
  2054. },
  2055. splitLine: {
  2056. show: false
  2057. },
  2058. axisLine: {
  2059. lineStyle: {
  2060. color: '#095f8e'
  2061. }
  2062. },
  2063. axisLabel: {
  2064. color: '#b5e1fc'
  2065. }
  2066. },
  2067. {
  2068. type: 'value',
  2069. name: '环比',
  2070. min: 0,
  2071. max: 10,
  2072. nameTextStyle: {
  2073. color: '#b5e1fc' // 坐标轴名称颜色
  2074. },
  2075. splitLine: {
  2076. show: false // 不显示坐标轴刻度
  2077. },
  2078. axisLine: {
  2079. lineStyle: {
  2080. color: '#095f8e' // 坐标轴轴线颜色
  2081. }
  2082. },
  2083. axisLabel: {
  2084. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  2085. }
  2086. }
  2087. ],
  2088. series: [{
  2089. name: '新增人次',
  2090. type: 'bar',
  2091. "data": [
  2092. "6",
  2093. "7",
  2094. "5",
  2095. "5",
  2096. "6",
  2097. "7",
  2098. "5",
  2099. "3"
  2100. ],
  2101. barWidth: 20,
  2102. label: {
  2103. normal: {
  2104. show: true,
  2105. position: 'top', // 在柱状图上方显示
  2106. color: '#fff' // 柱状图上方显示的数值颜色
  2107. }
  2108. },
  2109. itemStyle: {
  2110. barBorderRadius: [8, 8, 0, 0],
  2111. color: '#00e6f3'
  2112. }
  2113. },
  2114. {
  2115. name: '环比',
  2116. type: 'line',
  2117. yAxisIndex: 1,
  2118. "data": [
  2119. "3",
  2120. "3",
  2121. "0",
  2122. "2",
  2123. "3",
  2124. "3",
  2125. "2",
  2126. "2"
  2127. ],
  2128. itemStyle: {
  2129. color: '#03fa6d'
  2130. }
  2131. }
  2132. ]
  2133. },
  2134. "月": {
  2135. "title": {
  2136. "text": "新增患者趋势",
  2137. "x": "center",
  2138. textStyle: {
  2139. color: '#b5e1fc',
  2140. fontSize: 16,
  2141. fontWeight: 'bold'
  2142. }
  2143. },
  2144. tooltip: {
  2145. trigger: 'axis',
  2146. axisPointer: {
  2147. type: 'cross',
  2148. crossStyle: {
  2149. color: '#fff'
  2150. }
  2151. }
  2152. },
  2153. "grid": {
  2154. top: '50',
  2155. left: '60'
  2156. },
  2157. legend: {
  2158. data: ['新增人次', '环比'],
  2159. textStyle: {
  2160. color: '#b5e1fc'
  2161. },
  2162. top: '40'
  2163. },
  2164. xAxis: [{
  2165. type: 'category',
  2166. "data": [
  2167. "2018-01",
  2168. "2018-02",
  2169. "2018-03",
  2170. "2018-04",
  2171. "2018-05",
  2172. "2018-06"
  2173. ],
  2174. axisPointer: {
  2175. type: 'shadow'
  2176. },
  2177. axisTick: {
  2178. show: false
  2179. },
  2180. axisLine: {
  2181. lineStyle: {
  2182. color: '#095f8e'
  2183. }
  2184. },
  2185. axisLabel: {
  2186. color: '#b5e1fc'
  2187. }
  2188. }],
  2189. yAxis: [{
  2190. type: 'value',
  2191. name: '新增人次',
  2192. max: 20,
  2193. nameTextStyle: {
  2194. color: '#b5e1fc' // 坐标轴名称颜色
  2195. },
  2196. splitLine: {
  2197. show: false
  2198. },
  2199. axisLine: {
  2200. lineStyle: {
  2201. color: '#095f8e'
  2202. }
  2203. },
  2204. axisLabel: {
  2205. color: '#b5e1fc'
  2206. }
  2207. },
  2208. {
  2209. type: 'value',
  2210. name: '环比',
  2211. min: 0,
  2212. max: 10,
  2213. nameTextStyle: {
  2214. color: '#b5e1fc' // 坐标轴名称颜色
  2215. },
  2216. splitLine: {
  2217. show: false // 不显示坐标轴刻度
  2218. },
  2219. axisLine: {
  2220. lineStyle: {
  2221. color: '#095f8e' // 坐标轴轴线颜色
  2222. }
  2223. },
  2224. axisLabel: {
  2225. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  2226. }
  2227. }
  2228. ],
  2229. series: [{
  2230. name: '新增人次',
  2231. type: 'bar',
  2232. "data": [
  2233. "4",
  2234. "7",
  2235. "4",
  2236. "6",
  2237. "6",
  2238. "6"
  2239. ],
  2240. barWidth: 20,
  2241. label: {
  2242. normal: {
  2243. show: true,
  2244. position: 'top', // 在柱状图上方显示
  2245. color: '#fff' // 柱状图上方显示的数值颜色
  2246. }
  2247. },
  2248. itemStyle: {
  2249. barBorderRadius: [8, 8, 0, 0],
  2250. color: '#00e6f3'
  2251. }
  2252. },
  2253. {
  2254. name: '环比',
  2255. type: 'line',
  2256. yAxisIndex: 1,
  2257. "data": [
  2258. "4",
  2259. "6",
  2260. "3",
  2261. "5",
  2262. "3",
  2263. "4"
  2264. ],
  2265. itemStyle: {
  2266. color: '#03fa6d'
  2267. }
  2268. }
  2269. ]
  2270. },
  2271. "季": {
  2272. "title": {
  2273. "text": "新增患者趋势",
  2274. "x": "center",
  2275. textStyle: {
  2276. color: '#b5e1fc',
  2277. fontSize: 16,
  2278. fontWeight: 'bold'
  2279. }
  2280. },
  2281. tooltip: {
  2282. trigger: 'axis',
  2283. axisPointer: {
  2284. type: 'cross',
  2285. crossStyle: {
  2286. color: '#fff'
  2287. }
  2288. }
  2289. },
  2290. "grid": {
  2291. top: '50',
  2292. left: '60'
  2293. },
  2294. legend: {
  2295. data: ['新增人次', '环比'],
  2296. textStyle: {
  2297. color: '#b5e1fc'
  2298. },
  2299. top: '40'
  2300. },
  2301. xAxis: [{
  2302. type: 'category',
  2303. "data": [
  2304. "2017季度3",
  2305. "2017季度4",
  2306. "2018季度1",
  2307. "2018季度2"
  2308. ],
  2309. axisPointer: {
  2310. type: 'shadow'
  2311. },
  2312. axisTick: {
  2313. show: false
  2314. },
  2315. axisLine: {
  2316. lineStyle: {
  2317. color: '#095f8e'
  2318. }
  2319. },
  2320. axisLabel: {
  2321. color: '#b5e1fc'
  2322. }
  2323. }],
  2324. yAxis: [{
  2325. type: 'value',
  2326. name: '新增人次',
  2327. max: 40,
  2328. nameTextStyle: {
  2329. color: '#b5e1fc' // 坐标轴名称颜色
  2330. },
  2331. splitLine: {
  2332. show: false
  2333. },
  2334. axisLine: {
  2335. lineStyle: {
  2336. color: '#095f8e'
  2337. }
  2338. },
  2339. axisLabel: {
  2340. color: '#b5e1fc'
  2341. }
  2342. },
  2343. {
  2344. type: 'value',
  2345. name: '环比',
  2346. min: 0,
  2347. max: 20,
  2348. nameTextStyle: {
  2349. color: '#b5e1fc' // 坐标轴名称颜色
  2350. },
  2351. splitLine: {
  2352. show: false // 不显示坐标轴刻度
  2353. },
  2354. axisLine: {
  2355. lineStyle: {
  2356. color: '#095f8e' // 坐标轴轴线颜色
  2357. }
  2358. },
  2359. axisLabel: {
  2360. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  2361. }
  2362. }
  2363. ],
  2364. series: [{
  2365. name: '新增人次',
  2366. type: 'bar',
  2367. "data": [
  2368. "17",
  2369. "23",
  2370. "14",
  2371. "17"
  2372. ],
  2373. barWidth: 20,
  2374. label: {
  2375. normal: {
  2376. show: true,
  2377. position: 'top', // 在柱状图上方显示
  2378. color: '#fff' // 柱状图上方显示的数值颜色
  2379. }
  2380. },
  2381. itemStyle: {
  2382. barBorderRadius: [8, 8, 0, 0],
  2383. color: '#00e6f3'
  2384. }
  2385. },
  2386. {
  2387. name: '环比',
  2388. type: 'line',
  2389. yAxisIndex: 1,
  2390. "data": [
  2391. "11",
  2392. "8",
  2393. "3",
  2394. "5"
  2395. ],
  2396. itemStyle: {
  2397. color: '#03fa6d'
  2398. }
  2399. }
  2400. ]
  2401. },
  2402. "年": {
  2403. "title": {
  2404. "text": "新增患者趋势",
  2405. "x": "center",
  2406. textStyle: {
  2407. color: '#b5e1fc',
  2408. fontSize: 16,
  2409. fontWeight: 'bold'
  2410. }
  2411. },
  2412. tooltip: {
  2413. trigger: 'axis',
  2414. axisPointer: {
  2415. type: 'cross',
  2416. crossStyle: {
  2417. color: '#fff'
  2418. }
  2419. }
  2420. },
  2421. "grid": {
  2422. top: '50',
  2423. left: '60'
  2424. },
  2425. legend: {
  2426. data: ['新增人次', '环比'],
  2427. textStyle: {
  2428. color: '#b5e1fc'
  2429. },
  2430. top: '40'
  2431. },
  2432. xAxis: [{
  2433. type: 'category',
  2434. "data": [
  2435. "2016",
  2436. "2017",
  2437. "2018"
  2438. ],
  2439. axisPointer: {
  2440. type: 'shadow'
  2441. },
  2442. axisTick: {
  2443. show: false
  2444. },
  2445. axisLine: {
  2446. lineStyle: {
  2447. color: '#095f8e'
  2448. }
  2449. },
  2450. axisLabel: {
  2451. color: '#b5e1fc'
  2452. }
  2453. }],
  2454. yAxis: [{
  2455. type: 'value',
  2456. name: '新增人次',
  2457. max: 200,
  2458. nameTextStyle: {
  2459. color: '#b5e1fc' // 坐标轴名称颜色
  2460. },
  2461. splitLine: {
  2462. show: false
  2463. },
  2464. axisLine: {
  2465. lineStyle: {
  2466. color: '#095f8e'
  2467. }
  2468. },
  2469. axisLabel: {
  2470. color: '#b5e1fc'
  2471. }
  2472. },
  2473. {
  2474. type: 'value',
  2475. name: '环比',
  2476. min: 0,
  2477. max: 40,
  2478. nameTextStyle: {
  2479. color: '#b5e1fc' // 坐标轴名称颜色
  2480. },
  2481. splitLine: {
  2482. show: false // 不显示坐标轴刻度
  2483. },
  2484. axisLine: {
  2485. lineStyle: {
  2486. color: '#095f8e' // 坐标轴轴线颜色
  2487. }
  2488. },
  2489. axisLabel: {
  2490. color: '#b5e1fc' // 坐标轴刻度标签文本颜色
  2491. }
  2492. }
  2493. ],
  2494. series: [{
  2495. name: '新增人次',
  2496. type: 'bar',
  2497. "data": [
  2498. "135",
  2499. "158",
  2500. "114"
  2501. ],
  2502. barWidth: 20,
  2503. label: {
  2504. normal: {
  2505. show: true,
  2506. position: 'top', // 在柱状图上方显示
  2507. color: '#fff' // 柱状图上方显示的数值颜色
  2508. }
  2509. },
  2510. itemStyle: {
  2511. barBorderRadius: [8, 8, 0, 0],
  2512. color: '#00e6f3'
  2513. }
  2514. },
  2515. {
  2516. name: '环比',
  2517. type: 'line',
  2518. yAxisIndex: 1,
  2519. "data": [
  2520. "27",
  2521. "34",
  2522. "21"
  2523. ],
  2524. itemStyle: {
  2525. color: '#03fa6d'
  2526. }
  2527. }
  2528. ]
  2529. }
  2530. }
  2531. }
  2532. }