estateMonitoringPlatformData.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879
  1. // 房产项目可视化监控平台大屏范例的图表数据
  2. var estatePlatformDatas = {
  3. "saleAmountOption": {
  4. "backgroundColor": "",
  5. "yAxis": {
  6. "axisLabel": {
  7. "rotate": 0,
  8. "fontFamily": "MicrosoftYaHei",
  9. "color": "#fff"
  10. },
  11. "axisLine": {
  12. "lineStyle": {
  13. "color": "#ffffff"
  14. }
  15. },
  16. "name": "",
  17. "show": true,
  18. "splitLine": {
  19. "lineStyle": {
  20. "color": "#E9E9E9",
  21. "width": 0.3,
  22. "type": "solid"
  23. },
  24. "show": false
  25. },
  26. "splitArea": {
  27. "show": false
  28. },
  29. "nameGap": 5,
  30. "scale": true,
  31. "nameLocation": "end",
  32. "type": "value",
  33. "nameTextStyle": {
  34. "padding": [0, 0, 5, 0]
  35. }
  36. },
  37. "xAxis": {
  38. "axisLabel": {
  39. "rotate": 0,
  40. "fontFamily": "MicrosoftYaHei",
  41. "color": "#fff"
  42. },
  43. "data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
  44. "axisLine": {
  45. "lineStyle": {
  46. "color": "#ffffff"
  47. }
  48. },
  49. "show": true,
  50. "name": "",
  51. "axisTick": {
  52. "alignWithLabel": true
  53. },
  54. "splitLine": {
  55. "lineStyle": {
  56. "color": "#E9E9E9",
  57. "type": "solid"
  58. },
  59. "show": false
  60. },
  61. "nameGap": 2,
  62. "nameLocation": "end",
  63. "type": "category"
  64. },
  65. // "color": ["#15D1F2", "#499BFF", "#2C61FF", "#243BCC", "#67A9FF"],
  66. "grid": {
  67. "top": 35,
  68. "left": 50,
  69. "bottom": 25
  70. },
  71. "legend": {
  72. "data": ["Y1", "Y3"],
  73. "show": false,
  74. "textStyle": {
  75. "color": "#ffffff"
  76. },
  77. "type": "scroll"
  78. },
  79. "series": [
  80. {
  81. "data": ["100", "520", "2000", "3340", "3900", "3300", "2500"],
  82. "name": "Y1",
  83. "emphasis": {
  84. "itemStyle": {
  85. "color": "#A8CFFF"
  86. }
  87. },
  88. "type": "bar"
  89. },
  90. {
  91. "data": ["1", "1", "0", "0", "0", "1", "0"],
  92. "name": "Y3",
  93. "emphasis": {
  94. "itemStyle": {
  95. "color": "#A8CFFF"
  96. }
  97. },
  98. "type": "bar"
  99. }
  100. ],
  101. "tooltip": {
  102. "axisPointer": {
  103. "shadowStyle": {
  104. "color": "rgba(231,243,252,0)"
  105. },
  106. "type": "shadow"
  107. },
  108. "trigger": "axis",
  109. "textStyle": {
  110. "align": "left"
  111. }
  112. },
  113. "textStyle": {
  114. "fontFamily": "Microsoft YaHei Light"
  115. },
  116. "title": {
  117. "padding": [5, 0, 0, 20],
  118. "x": "left",
  119. "text": "",
  120. "textStyle": {
  121. "fontFamily": "Microsoft YaHei Light",
  122. "color": "#ffffff",
  123. "fontWeight": "100"
  124. }
  125. }
  126. },
  127. "saleReturnOption": {
  128. "backgroundColor": "",
  129. "yAxis": {
  130. "axisLabel": {
  131. "rotate": 0,
  132. "fontFamily": "MicrosoftYaHei",
  133. "color": "#fff"
  134. },
  135. "axisLine": {
  136. "lineStyle": {
  137. "color": "#ffffff"
  138. }
  139. },
  140. "name": "",
  141. "show": true,
  142. "splitLine": {
  143. "lineStyle": {
  144. "color": "#E9E9E9",
  145. "width": 0.3,
  146. "type": "solid"
  147. },
  148. "show": false
  149. },
  150. "splitArea": {
  151. "show": false
  152. },
  153. "nameGap": 5,
  154. "scale": true,
  155. "nameLocation": "end",
  156. "type": "value",
  157. "nameTextStyle": {
  158. "padding": [0, 0, 5, 0]
  159. }
  160. },
  161. "xAxis": {
  162. "axisLabel": {
  163. "rotate": 0,
  164. "fontFamily": "MicrosoftYaHei",
  165. "color": "#fff"
  166. },
  167. "data": ["Mon", "Tue", "Wed", "Sun", "Sat", "Thu", "Fri"],
  168. "axisLine": {
  169. "lineStyle": {
  170. "color": "#ffffff"
  171. }
  172. },
  173. "show": true,
  174. "name": "",
  175. "axisTick": {
  176. "alignWithLabel": true
  177. },
  178. "splitLine": {
  179. "lineStyle": {
  180. "color": "#E9E9E9",
  181. "type": "solid"
  182. },
  183. "show": false
  184. },
  185. "nameGap": 2,
  186. "nameLocation": "end",
  187. "type": "category",
  188. "boundaryGap": false
  189. },
  190. // "color": ["#15D1F2", "#499BFF", "#2C61FF", "#243BCC", "#67A9FF"],
  191. "grid": {
  192. "top": 35,
  193. "left": 50,
  194. "bottom": 25
  195. },
  196. "legend": {
  197. "data": ["Y1"],
  198. "show": false,
  199. "textStyle": {
  200. "color": "#ffffff"
  201. },
  202. "type": "scroll"
  203. },
  204. "series": [
  205. {
  206. "data": ["100", "520", "2000", "2500", "3300", "3340", "3900"],
  207. "name": "Y1",
  208. "emphasis": {
  209. "itemStyle": {
  210. "color": "#A8CFFF"
  211. }
  212. },
  213. "type": "line"
  214. }
  215. ],
  216. "tooltip": {
  217. "axisPointer": {
  218. "shadowStyle": {
  219. "color": "rgba(231,243,252,0.4)"
  220. },
  221. "type": "line"
  222. },
  223. "trigger": "axis",
  224. "textStyle": {
  225. "align": "left"
  226. }
  227. },
  228. "textStyle": {
  229. "fontFamily": "Microsoft YaHei Light"
  230. },
  231. "title": {
  232. "padding": [5, 0, 0, 20],
  233. "x": "left",
  234. "text": "",
  235. "textStyle": {
  236. "fontFamily": "Microsoft YaHei Light",
  237. "color": "#ffffff",
  238. "fontWeight": "100"
  239. }
  240. }
  241. },
  242. "stockIndexOption": {
  243. "backgroundColor": "",
  244. "yAxis": {
  245. "axisLabel": {
  246. "rotate": 0,
  247. "fontFamily": "MicrosoftYaHei",
  248. "color": "#fff"
  249. },
  250. "axisLine": {
  251. "lineStyle": {
  252. "color": "#ffffff"
  253. }
  254. },
  255. "name": "",
  256. "show": true,
  257. "splitLine": {
  258. "lineStyle": {
  259. "color": "#E9E9E9",
  260. "width": 0.3,
  261. "type": "solid"
  262. },
  263. "show": false
  264. },
  265. "splitArea": {
  266. "show": false
  267. },
  268. "nameGap": 5,
  269. "scale": true,
  270. "nameLocation": "end",
  271. "type": "value",
  272. "nameTextStyle": {
  273. "padding": [0, 0, 5, 0]
  274. }
  275. },
  276. "xAxis": {
  277. "axisLabel": {
  278. "rotate": 0,
  279. "fontFamily": "MicrosoftYaHei",
  280. "color": "#fff"
  281. },
  282. "data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
  283. "axisLine": {
  284. "lineStyle": {
  285. "color": "#ffffff"
  286. }
  287. },
  288. "show": true,
  289. "name": "",
  290. "axisTick": {
  291. "alignWithLabel": true
  292. },
  293. "splitLine": {
  294. "lineStyle": {
  295. "color": "#E9E9E9",
  296. "type": "solid"
  297. },
  298. "show": false
  299. },
  300. "nameGap": 2,
  301. "nameLocation": "end",
  302. "type": "category"
  303. },
  304. // "color": ["#BCE4E9", "#7AC2D0", "#53A8B6", "#2D808D", "#F1FDFF"],
  305. "grid": {
  306. "top": 35,
  307. "left": 50,
  308. "bottom": 25
  309. },
  310. "legend": {
  311. "data": ["Y2", "Y1", "Y3"],
  312. "show": false,
  313. "textStyle": {
  314. "color": "#ffffff"
  315. },
  316. "type": "scroll"
  317. },
  318. "series": [
  319. {
  320. "data": ["500", "800", "3000", "3617", "3400", "4200", "1842"],
  321. "name": "Y2",
  322. "emphasis": {
  323. "itemStyle": {
  324. "color": "#9BF1FF"
  325. }
  326. },
  327. "type": "bar"
  328. },
  329. {
  330. "data": ["100", "520", "2000", "3340", "3900", "3300", "2500"],
  331. "name": "Y1",
  332. "emphasis": {
  333. "itemStyle": {
  334. "color": "#9BF1FF"
  335. }
  336. },
  337. "type": "bar"
  338. },
  339. {
  340. "data": ["1", "1", "0", "0", "0", "1", "0"],
  341. "name": "Y3",
  342. "emphasis": {
  343. "itemStyle": {
  344. "color": "#9BF1FF"
  345. }
  346. },
  347. "type": "bar"
  348. }
  349. ],
  350. "tooltip": {
  351. "axisPointer": {
  352. "shadowStyle": {
  353. "color": "rgba(231,243,252,0)"
  354. },
  355. "type": "shadow"
  356. },
  357. "trigger": "axis",
  358. "textStyle": {
  359. "align": "left"
  360. }
  361. },
  362. "textStyle": {
  363. "fontFamily": "Microsoft YaHei Light"
  364. },
  365. "title": {
  366. "padding": [5, 0, 0, 20],
  367. "x": "left",
  368. "text": "",
  369. "textStyle": {
  370. "fontFamily": "Microsoft YaHei Light",
  371. "color": "#ffffff",
  372. "fontWeight": "100"
  373. }
  374. }
  375. },
  376. "projectCostOption": {
  377. "backgroundColor": "",
  378. "radar": {
  379. "indicator": [
  380. {
  381. "max": "500",
  382. "name": "Mon"
  383. },
  384. {
  385. "max": "800",
  386. "name": "Tue"
  387. },
  388. {
  389. "max": "3000",
  390. "name": "Wed"
  391. },
  392. {
  393. "max": "3617",
  394. "name": "Thu"
  395. },
  396. {
  397. "max": "3400",
  398. "name": "Fri"
  399. },
  400. {
  401. "max": "4200",
  402. "name": "Sat"
  403. },
  404. {
  405. "max": "1842",
  406. "name": "Sun"
  407. }
  408. ],
  409. "shape": "circle",
  410. "splitArea": {
  411. "show": false
  412. },
  413. "axisLine": {
  414. "lineStyle": {
  415. "color": "rgba(255, 255, 255, 0.3)"
  416. }
  417. },
  418. "name": {
  419. "textStyle": {
  420. "color": "rgb(255, 255, 255)"
  421. }
  422. },
  423. "splitLine": {
  424. "lineStyle": {
  425. "color": [
  426. "rgba(255, 255, 255, 1)",
  427. "rgba(255, 255, 255, 0.8)",
  428. "rgba(255, 255, 255, 0.6)",
  429. "rgba(255, 255, 255, 0.4)",
  430. "rgba(255, 255, 255, 0.2)",
  431. "rgba(255, 255, 255, 0.1)"
  432. ]
  433. }
  434. },
  435. "splitNumber": 5,
  436. "radius": "70%"
  437. },
  438. // "color": ["#00E9FF", "#BBE7FF", "#6AE5C1", "#46ABFF", "#363EFF"],
  439. "grid": {
  440. "top": 35,
  441. "left": 50,
  442. "bottom": 25
  443. },
  444. "legend": {
  445. "data": ["Y1"],
  446. "show": false,
  447. "textStyle": {
  448. "color": "#ffffff"
  449. },
  450. "type": "scroll"
  451. },
  452. "series": [
  453. {
  454. "barWidth": "60%",
  455. "data": [
  456. {
  457. "name": "Y1",
  458. "value": ["100", "520", "2000", "3340", "3900", "3300", "2500"]
  459. }
  460. ],
  461. "name": "示范数据",
  462. "emphasis": {
  463. "itemStyle": {
  464. "color": "#759CFF"
  465. }
  466. },
  467. "type": "radar"
  468. }
  469. ],
  470. "tooltip": {
  471. "axisPointer": {
  472. "shadowStyle": {
  473. "color": "rgba(231,243,252,0)"
  474. },
  475. "type": "shadow"
  476. },
  477. "trigger": "axis",
  478. "textStyle": {
  479. "align": "left"
  480. }
  481. },
  482. "textStyle": {
  483. "fontFamily": "Microsoft YaHei Light"
  484. },
  485. "title": {
  486. "padding": [5, 0, 0, 20],
  487. "x": "left",
  488. "text": "",
  489. "textStyle": {
  490. "fontFamily": "Microsoft YaHei Light",
  491. "color": "#ffffff",
  492. "fontWeight": "100"
  493. }
  494. }
  495. },
  496. "revenueOption": {
  497. "backgroundColor": "",
  498. "yAxis": {
  499. "axisLabel": {
  500. "rotate": 0,
  501. "fontFamily": "MicrosoftYaHei",
  502. "color": "#fff"
  503. },
  504. "axisLine": {
  505. "lineStyle": {
  506. "color": "#ffffff"
  507. }
  508. },
  509. "name": "",
  510. "show": true,
  511. "splitLine": {
  512. "lineStyle": {
  513. "color": "#E9E9E9",
  514. "width": 0.3,
  515. "type": "solid"
  516. },
  517. "show": false
  518. },
  519. "splitArea": {
  520. "show": false
  521. },
  522. "nameGap": 5,
  523. "scale": true,
  524. "nameLocation": "end",
  525. "type": "value",
  526. "nameTextStyle": {
  527. "padding": [0, 0, 5, 0]
  528. }
  529. },
  530. "xAxis": {
  531. "axisLabel": {
  532. "rotate": 0,
  533. "fontFamily": "MicrosoftYaHei",
  534. "color": "#fff"
  535. },
  536. "data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
  537. "axisLine": {
  538. "lineStyle": {
  539. "color": "#ffffff"
  540. }
  541. },
  542. "show": true,
  543. "name": "",
  544. "axisTick": {
  545. "alignWithLabel": true
  546. },
  547. "splitLine": {
  548. "lineStyle": {
  549. "color": "#E9E9E9",
  550. "type": "solid"
  551. },
  552. "show": false
  553. },
  554. "nameGap": 2,
  555. "nameLocation": "end",
  556. "type": "category"
  557. },
  558. // "color": ["#00E9FF", "#BBE7FF", "#6AE5C1", "#46ABFF", "#363EFF"],
  559. "grid": {
  560. "top": 35,
  561. "left": 50,
  562. "bottom": 25
  563. },
  564. "legend": {
  565. "data": ["Y2", "Y3"],
  566. "show": false,
  567. "textStyle": {
  568. "color": "#ffffff"
  569. },
  570. "type": "scroll"
  571. },
  572. "series": [
  573. {
  574. "data": ["500", "800", "3000", "3617", "3400", "4200", "1842"],
  575. "name": "Y2",
  576. "emphasis": {
  577. "itemStyle": {
  578. "color": "#759CFF"
  579. }
  580. },
  581. "type": "bar"
  582. },
  583. {
  584. "data": ["1", "1", "0", "0", "0", "1", "0"],
  585. "name": "Y3",
  586. "emphasis": {
  587. "itemStyle": {
  588. "color": "#759CFF"
  589. }
  590. },
  591. "type": "bar"
  592. }
  593. ],
  594. "tooltip": {
  595. "axisPointer": {
  596. "shadowStyle": {
  597. "color": "rgba(231,243,252,0)"
  598. },
  599. "type": "shadow"
  600. },
  601. "trigger": "axis",
  602. "textStyle": {
  603. "align": "left"
  604. }
  605. },
  606. "textStyle": {
  607. "fontFamily": "Microsoft YaHei Light"
  608. },
  609. "title": {
  610. "padding": [5, 0, 0, 20],
  611. "x": "left",
  612. "text": "",
  613. "textStyle": {
  614. "fontFamily": "Microsoft YaHei Light",
  615. "color": "#ffffff",
  616. "fontWeight": "100"
  617. }
  618. }
  619. },
  620. "investProfitOption": {
  621. "backgroundColor": "",
  622. "yAxis": {
  623. "axisLabel": {
  624. "rotate": 0,
  625. "fontFamily": "MicrosoftYaHei",
  626. "color": "#fff"
  627. },
  628. "axisLine": {
  629. "lineStyle": {
  630. "color": "#ffffff"
  631. }
  632. },
  633. "name": "",
  634. "show": true,
  635. "splitLine": {
  636. "lineStyle": {
  637. "color": "#E9E9E9",
  638. "width": 0.3,
  639. "type": "solid"
  640. },
  641. "show": false
  642. },
  643. "splitArea": {
  644. "show": false
  645. },
  646. "nameGap": 5,
  647. "scale": true,
  648. "nameLocation": "end",
  649. "type": "value",
  650. "nameTextStyle": {
  651. "padding": [0, 0, 5, 0]
  652. }
  653. },
  654. "xAxis": {
  655. "axisLabel": {
  656. "rotate": 0,
  657. "fontFamily": "MicrosoftYaHei",
  658. "color": "#fff"
  659. },
  660. "data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
  661. "axisLine": {
  662. "lineStyle": {
  663. "color": "#ffffff"
  664. }
  665. },
  666. "show": true,
  667. "name": "",
  668. "axisTick": {
  669. "alignWithLabel": true
  670. },
  671. "splitLine": {
  672. "lineStyle": {
  673. "color": "#E9E9E9",
  674. "type": "solid"
  675. },
  676. "show": false
  677. },
  678. "nameGap": 2,
  679. "nameLocation": "end",
  680. "type": "category"
  681. },
  682. // "color": ["#BCE4E9", "#7AC2D0", "#53A8B6", "#2D808D", "#F1FDFF"],
  683. "grid": {
  684. "top": 35,
  685. "left": 50,
  686. "bottom": 25
  687. },
  688. "legend": {
  689. "data": ["Y2", "Y1", "Y3"],
  690. "show": false,
  691. "textStyle": {
  692. "color": "#ffffff"
  693. },
  694. "type": "scroll"
  695. },
  696. "series": [
  697. {
  698. "data": ["500", "800", "3000", "3617", "3400", "4200", "1842"],
  699. "name": "Y2",
  700. "emphasis": {
  701. "itemStyle": {
  702. "color": "#9BF1FF"
  703. }
  704. },
  705. "type": "bar"
  706. },
  707. {
  708. "data": ["100", "520", "2000", "3340", "3900", "3300", "2500"],
  709. "name": "Y1",
  710. "emphasis": {
  711. "itemStyle": {
  712. "color": "#9BF1FF"
  713. }
  714. },
  715. "type": "bar"
  716. },
  717. {
  718. "data": ["1", "1", "0", "0", "0", "1", "0"],
  719. "name": "Y3",
  720. "emphasis": {
  721. "itemStyle": {
  722. "color": "#9BF1FF"
  723. }
  724. },
  725. "type": "bar"
  726. }
  727. ],
  728. "tooltip": {
  729. "axisPointer": {
  730. "shadowStyle": {
  731. "color": "rgba(231,243,252,0)"
  732. },
  733. "type": "shadow"
  734. },
  735. "trigger": "axis",
  736. "textStyle": {
  737. "align": "left"
  738. }
  739. },
  740. "textStyle": {
  741. "fontFamily": "Microsoft YaHei Light"
  742. },
  743. "title": {
  744. "padding": [5, 0, 0, 20],
  745. "x": "left",
  746. "text": "",
  747. "textStyle": {
  748. "fontFamily": "Microsoft YaHei Light",
  749. "color": "#ffffff",
  750. "fontWeight": "100"
  751. }
  752. }
  753. },
  754. "stockSituationOption": {
  755. "backgroundColor": "",
  756. "yAxis": {
  757. "axisLabel": {
  758. "rotate": 0,
  759. "fontFamily": "MicrosoftYaHei",
  760. "color": "#fff"
  761. },
  762. "axisLine": {
  763. "lineStyle": {
  764. "color": "#ffffff"
  765. }
  766. },
  767. "name": "",
  768. "show": true,
  769. "splitLine": {
  770. "lineStyle": {
  771. "color": "#E9E9E9",
  772. "width": 0.3,
  773. "type": "solid"
  774. },
  775. "show": false
  776. },
  777. "splitArea": {
  778. "show": false
  779. },
  780. "nameGap": 5,
  781. "scale": true,
  782. "nameLocation": "end",
  783. "type": "value",
  784. "nameTextStyle": {
  785. "padding": [0, 0, 5, 0]
  786. }
  787. },
  788. "xAxis": {
  789. "axisLabel": {
  790. "rotate": 0,
  791. "fontFamily": "MicrosoftYaHei",
  792. "color": "#fff"
  793. },
  794. "data": ["Fri", "Thu", "Sat", "Sun", "Wed", "Tue", "Mon"],
  795. "axisLine": {
  796. "lineStyle": {
  797. "color": "#ffffff"
  798. }
  799. },
  800. "show": true,
  801. "name": "",
  802. "axisTick": {
  803. "alignWithLabel": true
  804. },
  805. "splitLine": {
  806. "lineStyle": {
  807. "color": "#E9E9E9",
  808. "type": "solid"
  809. },
  810. "show": false
  811. },
  812. "nameGap": 2,
  813. "nameLocation": "end",
  814. "type": "category",
  815. "boundaryGap": false
  816. },
  817. // "color": ["#15D1F2", "#499BFF", "#2C61FF", "#243BCC", "#67A9FF"],
  818. "grid": {
  819. "top": 35,
  820. "left": 50,
  821. "bottom": 25
  822. },
  823. "legend": {
  824. "data": ["Y1", "Y2"],
  825. "show": false,
  826. "textStyle": {
  827. "color": "#ffffff"
  828. },
  829. "type": "scroll"
  830. },
  831. "series": [
  832. {
  833. "data": ["3900", "3340", "3300", "2500", "2000", "520", "100"],
  834. "name": "Y1",
  835. "emphasis": {
  836. "itemStyle": {
  837. "color": "#A8CFFF"
  838. }
  839. },
  840. "type": "line"
  841. },
  842. {
  843. "data": ["3400", "3617", "4200", "1842", "3000", "800", "500"],
  844. "name": "Y2",
  845. "emphasis": {
  846. "itemStyle": {
  847. "color": "#A8CFFF"
  848. }
  849. },
  850. "type": "line"
  851. }
  852. ],
  853. "tooltip": {
  854. "axisPointer": {
  855. "shadowStyle": {
  856. "color": "rgba(231,243,252,0.4)"
  857. },
  858. "type": "line"
  859. },
  860. "trigger": "axis",
  861. "textStyle": {
  862. "align": "left"
  863. }
  864. },
  865. "textStyle": {
  866. "fontFamily": "Microsoft YaHei Light"
  867. },
  868. "title": {
  869. "padding": [5, 0, 0, 20],
  870. "x": "left",
  871. "text": "",
  872. "textStyle": {
  873. "fontFamily": "Microsoft YaHei Light",
  874. "color": "#ffffff",
  875. "fontWeight": "100"
  876. }
  877. }
  878. }
  879. };