options.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811
  1. import * as echarts from 'echarts'
  2. import 'echarts-gl'
  3. import { setOptions, nowSize } from "./echarts";
  4. let waterLevel = null
  5. export function setWaterLevel(ele, barData) {
  6. if (waterLevel) {
  7. waterLevel.dispose()
  8. }
  9. let maxData = [1000];
  10. let barWidth = 90
  11. let option = {
  12. background: 'transparent',
  13. grid: {
  14. top: '11%',
  15. left: '0%',
  16. bottom: '4%',
  17. right: '0%',
  18. },
  19. tooltip: {
  20. show: false,
  21. },
  22. animation: false,
  23. xAxis: [
  24. {
  25. show: false,
  26. type: 'category',
  27. data: [0],
  28. axisLine: {
  29. show: false,
  30. },
  31. axisLabel: {
  32. show: false
  33. },
  34. },
  35. ],
  36. yAxis: [{
  37. show: false,
  38. }],
  39. series: [
  40. {
  41. // name: '上部圆',
  42. type: 'pictorialBar',
  43. silent: true,
  44. symbolSize: [barWidth, 20],
  45. symbolOffset: [0, -10],
  46. symbolPosition: 'end',
  47. z: 20,
  48. zlevel: 10,
  49. data: maxData,
  50. itemStyle: {
  51. color: 'rgba(16, 89, 159, 1)',
  52. }
  53. },
  54. {
  55. // name: '背景圆柱',
  56. type: 'bar',
  57. silent: true,
  58. barWidth: barWidth,
  59. barGap: '10%', // Make series be overlap
  60. barCateGoryGap: '10%',
  61. z: 16,
  62. itemStyle: {
  63. color: 'rgba(19, 73, 112, 1)'
  64. },
  65. data: maxData,
  66. },
  67. {
  68. // name: '内部柱子',
  69. type: 'bar',
  70. silent: true,
  71. barWidth: barWidth,
  72. z: 19,
  73. barGap: '-100%',
  74. itemStyle: {
  75. // opacity: 0.7,
  76. color: function (params) {
  77. return new echarts.graphic.LinearGradient(0, 0, 0, 1,
  78. [
  79. {
  80. offset: 0,
  81. color: 'rgba(8, 78, 178, 1)'
  82. },
  83. {
  84. offset: 1,
  85. color: 'rgba(14, 154, 209, 1)',
  86. },
  87. ],
  88. false
  89. );
  90. },
  91. },
  92. data: barData,
  93. },
  94. {
  95. // name: '上部圆',
  96. type: 'pictorialBar',
  97. silent: true,
  98. symbolSize: [barWidth, 20],
  99. symbolOffset: [0, -6],
  100. symbolPosition: 'end',
  101. z: 22,
  102. itemStyle: {
  103. color: function (params) {
  104. return new echarts.graphic.LinearGradient(0, 0, 0, 1,
  105. [
  106. {
  107. offset: 0,
  108. color: 'rgba(14, 154, 209, 1)',
  109. },
  110. {
  111. offset: 1,
  112. color: 'rgba(2, 81, 209, 1)'
  113. },
  114. ],
  115. false
  116. );
  117. },
  118. },
  119. data: barData,
  120. },
  121. {
  122. // name: '底部圆',
  123. type: 'pictorialBar',
  124. silent: true,
  125. symbolSize: [barWidth, 20],
  126. symbolOffset: [0, 10],
  127. z: 21,
  128. itemStyle: {
  129. color: function (params) {
  130. return new echarts.graphic.LinearGradient(0, 0, 0, 1,
  131. [
  132. {
  133. offset: 0,
  134. color: 'rgba(0, 166, 253, 1)',
  135. },
  136. {
  137. offset: 1,
  138. color: 'rgba(1, 75, 200, 1)'
  139. },
  140. ],
  141. false
  142. );
  143. },
  144. },
  145. data: barData,
  146. },
  147. ],
  148. };
  149. waterLevel = setOptions(ele, option)
  150. }
  151. let entThroughput5 = null
  152. export function setEntThroughput5(ele, dataIn) {
  153. if (entThroughput5) {
  154. entThroughput5.dispose()
  155. }
  156. let values = []
  157. dataIn.forEach(row => {
  158. values.push(row.ton)
  159. })
  160. let option = {
  161. backgroundColor: 'transparent',
  162. grid: [{
  163. left: "3%",
  164. right: "6%",
  165. bottom: "1%",
  166. top: "1%",
  167. containLabel: false,
  168. }],
  169. tooltip: {
  170. trigger: 'axis',
  171. borderColor: "#092B46",
  172. backgroundColor: "#092B46",
  173. textStyle: {
  174. color: "#eee",
  175. fontSize: nowSize(14),
  176. align: 'left'
  177. },
  178. axisPointer: {
  179. type: 'shadow'
  180. },
  181. formatter: function (params) {
  182. return dataIn[params[0].dataIndex].unitName + ' : ' + params[0].value
  183. }
  184. },
  185. xAxis: {
  186. axisLabel: {
  187. fontSize: nowSize(14),
  188. fontWeight: 700,
  189. margin: -nowSize(20),
  190. interval: 0
  191. },
  192. axisLine: {
  193. show: false
  194. },
  195. splitLine: {
  196. show: false
  197. },
  198. axisTick: {
  199. show: false
  200. },
  201. data: [
  202. { value: 'TOP01', textStyle: { color: 'rgba(255, 84, 31, 0.8)' } },
  203. { value: 'TOP02', textStyle: { color: 'rgba(255, 170, 49, 0.8)' } },
  204. { value: 'TOP03', textStyle: { color: 'rgba(77, 255, 148, 0.8)' } },
  205. { value: 'TOP04', textStyle: { color: 'rgba(80, 186, 226, 0.8)' } },
  206. { value: 'TOP05', textStyle: { color: 'rgba(127, 138, 255, 0.8)' } }
  207. ]
  208. },
  209. yAxis: {
  210. show: false,
  211. },
  212. series: [
  213. {
  214. name: 'hill',
  215. type: 'pictorialBar',
  216. barCategoryGap: '-50%',
  217. symbol: 'path://M0,10 L10,10 C5.5,10 5.5,5 5,0 C4.5,5 4.5,10 0,10 z',
  218. label: {
  219. show: true,
  220. position: 'top',
  221. distance: -nowSize(10),
  222. formatter: function (params) {
  223. let label = dataIn[params.dataIndex].unitName
  224. if (label.length > 6) {
  225. label = label.slice(0, 6) + '...'
  226. }
  227. return '{value|' + params.value + '}\n{label|' + label + "}"
  228. },
  229. rich: {
  230. value: {
  231. fontSize: nowSize(16),
  232. fontFamily: 'Barlow',
  233. fontWeight: 600,
  234. color: "rgba(255,255,255,0.9)",
  235. padding: [nowSize(5), 0],
  236. align: 'center'
  237. },
  238. label: {
  239. fontSize: nowSize(12),
  240. fontWeight: 400,
  241. color: "rgba(255,255,255,0.7)",
  242. }
  243. }
  244. },
  245. itemStyle: {
  246. color: function (params) {
  247. let colorList = [
  248. { color0: 'rgba(255, 84, 31, 0.5)', color1: 'rgba(255, 84, 31, 0.1)' },
  249. { color0: 'rgba(255, 170, 49, 0.5)', color1: 'rgba(255, 170, 49, 0.1)' },
  250. { color0: 'rgba(77, 255, 148, 0.5)', color1: 'rgba(77, 255, 148, 0.1)' },
  251. { color0: 'rgba(80, 186, 226, 0.5)', color1: 'rgba(80, 186, 226, 0.1)' },
  252. { color0: 'rgba(127, 138, 255, 0.5)', color1: 'rgba(127, 138, 255, 0.1)' },
  253. ]
  254. return {
  255. type: "linear", x: 0, y: 0, x2: 0, y2: 1,
  256. colorStops: [
  257. { offset: 0, color: colorList[params.dataIndex].color1 },
  258. { offset: 1, color: colorList[params.dataIndex].color0 }
  259. ],
  260. globalCoord: false
  261. }
  262. }
  263. },
  264. emphasis: {
  265. opacity: 1
  266. },
  267. data: values, // 修改值
  268. z: 10
  269. }
  270. ]
  271. }
  272. entThroughput5 = setOptions(ele, option)
  273. }
  274. let sjjk = null
  275. export function setSjjk(ele, dataIn) {
  276. if (sjjk) {
  277. sjjk.dispose()
  278. }
  279. let maxV = 0
  280. let month = []; let value = []; let total = []
  281. dataIn.forEach(i => {
  282. month.push(i.month)
  283. value.push(i.value)
  284. total.push(i.total)
  285. if (i.value > maxV) {
  286. maxV = i.value
  287. } else if (i.total > maxV) {
  288. maxV = i.total
  289. }
  290. })
  291. maxV += 5 - maxV % 5
  292. let option = {
  293. backgroundColor: "transparent",
  294. grid: {
  295. containLabel: true,
  296. left: "0%",
  297. right: "0%",
  298. top: "15%",
  299. bottom: "0%",
  300. },
  301. tooltip: {
  302. trigger: 'axis',
  303. borderColor: "#092B46",
  304. backgroundColor: "#092B46",
  305. textStyle: {
  306. color: "#eee",
  307. fontSize: nowSize(12),
  308. align: 'left'
  309. },
  310. axisPointer: {
  311. type: 'shadow'
  312. },
  313. },
  314. legend: {
  315. show: false,
  316. },
  317. xAxis: [
  318. {
  319. type: 'category',
  320. axisLine: { show: false },
  321. splitLine: { show: false },
  322. axisTick: { show: false },
  323. axisLabel: {
  324. color: 'rgba(255, 255, 255, 1)',
  325. fontSize: nowSize(12)
  326. },
  327. data: month
  328. }
  329. ],
  330. yAxis: [
  331. {
  332. type: 'value',
  333. name: '方量(万m2)',
  334. max: maxV,
  335. nameTextStyle: {
  336. color: 'rgba(255, 255, 255, 1)',
  337. fontSize: nowSize(12),
  338. align: 'left'
  339. },
  340. axisLine: { show: false },
  341. axisTick: { show: false },
  342. splitLine: {
  343. show: true,
  344. lineStyle: {
  345. type: 'dashed',
  346. color: 'rgba(151, 169, 217, 0.5)'
  347. }
  348. },
  349. axisLabel: {
  350. color: 'rgba(255, 255, 255, 0.7)',
  351. fontSize: nowSize(12),
  352. }
  353. },
  354. {
  355. type: 'value',
  356. name: '合计方量(万m2)',
  357. max: maxV,
  358. nameTextStyle: {
  359. color: 'rgba(255, 255, 255, 1)',
  360. fontSize: nowSize(12),
  361. align: 'right'
  362. },
  363. position: 'right',
  364. axisLine: { show: false },
  365. axisTick: { show: false },
  366. splitLine: {
  367. show: false,
  368. },
  369. axisLabel: {
  370. color: 'rgba(255, 255, 255, 0.8)',
  371. fontSize: nowSize(12),
  372. }
  373. }
  374. ],
  375. series: [
  376. {
  377. name: '方量',
  378. silent: true,
  379. type: 'bar',
  380. barWidth: nowSize(11),
  381. itemStyle: {
  382. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  383. offset: 0.3,
  384. color: 'rgba(67, 166, 255, 1)'
  385. }, {
  386. offset: 1,
  387. color: 'rgba(0, 44, 89, 1)'
  388. }]),
  389. opacity: 1,
  390. },
  391. yAxisIndex: 0,
  392. data: value,
  393. },
  394. {
  395. name: "方量",
  396. type: "scatter",
  397. silent: true,
  398. tooltip: {
  399. show: false
  400. },
  401. emphasis: {
  402. scale: false,
  403. },
  404. symbol: "rect",
  405. symbolSize: [nowSize(18), nowSize(5)],
  406. itemStyle: {
  407. color: 'rgba(161, 245, 255, 1)',
  408. shadowColor: "rgba(161, 245, 255, 0.7)",
  409. shadowBlur: nowSize(5),
  410. borderWidth: 1,
  411. opacity: 1,
  412. },
  413. z: 2,
  414. data: value,
  415. yAxisIndex: 0,
  416. animationDelay: 500,
  417. },
  418. {
  419. name: '合计方量',
  420. silent: true,
  421. type: 'line',
  422. symbol: 'emptyCircle',
  423. symbolSize: nowSize(11),
  424. yAxisIndex: 1,
  425. itemStyle: { color: 'rgba(143, 186, 236, 1)' },
  426. data: total,
  427. }
  428. ]
  429. }
  430. sjjk = setOptions(ele, option)
  431. }
  432. let cbgn = null
  433. export function setCbgn(ele, data) {
  434. if (cbgn) {
  435. cbgn.dispose()
  436. }
  437. const xData = data.map((i) => i.name);
  438. const yData = data.map((i) => i.value);
  439. const offsetX = nowSize(8);
  440. const offsetY = nowSize(4);
  441. // 绘制左侧面
  442. const CubeLeft = echarts.graphic.extendShape({
  443. shape: {
  444. x: 0,
  445. y: 0,
  446. },
  447. buildPath: function (ctx, shape) {
  448. const xAxisPoint = shape.xAxisPoint;
  449. const c0 = [shape.x, shape.y];
  450. const c1 = [shape.x - offsetX, shape.y - offsetY];
  451. const c2 = [xAxisPoint[0] - offsetX, xAxisPoint[1] - offsetY];
  452. const c3 = [xAxisPoint[0], xAxisPoint[1]];
  453. ctx
  454. .moveTo(c0[0], c0[1])
  455. .lineTo(c1[0], c1[1])
  456. .lineTo(c2[0], c2[1])
  457. .lineTo(c3[0], c3[1])
  458. .closePath();
  459. },
  460. });
  461. // 绘制右侧面
  462. const CubeRight = echarts.graphic.extendShape({
  463. shape: {
  464. x: 0,
  465. y: 0,
  466. },
  467. buildPath: function (ctx, shape) {
  468. const xAxisPoint = shape.xAxisPoint;
  469. const c1 = [shape.x, shape.y];
  470. const c2 = [xAxisPoint[0], xAxisPoint[1]];
  471. const c3 = [xAxisPoint[0] + offsetX, xAxisPoint[1] - offsetY];
  472. const c4 = [shape.x + offsetX, shape.y - offsetY];
  473. ctx
  474. .moveTo(c1[0], c1[1])
  475. .lineTo(c2[0], c2[1])
  476. .lineTo(c3[0], c3[1])
  477. .lineTo(c4[0], c4[1])
  478. .closePath();
  479. },
  480. });
  481. // 绘制顶面
  482. const CubeTop = echarts.graphic.extendShape({
  483. shape: {
  484. x: 0,
  485. y: 0,
  486. },
  487. buildPath: function (ctx, shape) {
  488. const c1 = [shape.x, shape.y];
  489. const c2 = [shape.x + offsetX, shape.y - offsetY]; //右点
  490. const c3 = [shape.x, shape.y - offsetX];
  491. const c4 = [shape.x - offsetX, shape.y - offsetY];
  492. ctx
  493. .moveTo(c1[0], c1[1])
  494. .lineTo(c2[0], c2[1])
  495. .lineTo(c3[0], c3[1])
  496. .lineTo(c4[0], c4[1])
  497. .closePath();
  498. },
  499. });
  500. // 注册三个面图形
  501. echarts.graphic.registerShape("CubeLeft", CubeLeft);
  502. echarts.graphic.registerShape("CubeRight", CubeRight);
  503. echarts.graphic.registerShape("CubeTop", CubeTop);
  504. const rightColor1 = new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  505. {
  506. offset: 0,
  507. color: 'rgba(44, 177, 226, 1)',
  508. },
  509. {
  510. offset: 1,
  511. color: 'rgba(44, 177, 226, 0)'
  512. }
  513. ])
  514. const leftColor1 = new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  515. {
  516. offset: 0,
  517. color: 'rgba(7, 111, 139, 1)',
  518. },
  519. {
  520. offset: 1,
  521. color: 'rgba(7, 111, 139, 0)'
  522. }
  523. ])
  524. const topColor1 = 'rgba(87, 189, 226, 1)'
  525. const rightColor2 = new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  526. {
  527. offset: 0,
  528. color: 'rgba(84, 192, 189, 1)',
  529. },
  530. {
  531. offset: 1,
  532. color: 'rgba(84, 192, 189, 0)'
  533. }
  534. ])
  535. const leftColor2 = new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  536. {
  537. offset: 0,
  538. color: 'rgba(34, 111, 105, 1)',
  539. },
  540. {
  541. offset: 1,
  542. color: 'rgba(34, 111, 105, 0)'
  543. }
  544. ])
  545. const topColor2 = 'rgba(114, 195, 193, 1)'
  546. let option = {
  547. backgroundColor: 'transparent',
  548. // 提示框
  549. tooltip: {
  550. trigger: 'axis',
  551. backgroundColor: 'rgba(11, 28, 63, 0.9)',
  552. borderColor: '#2da0de',
  553. textStyle: {
  554. color: '#ccc'
  555. },
  556. },
  557. grid: {
  558. top: '20%',
  559. left: '0%',
  560. right: '0%',
  561. bottom: '15%',
  562. },
  563. xAxis: [
  564. // 立体柱状图由两部分堆叠组成 ,设置serve中xAxisIndex可进行堆叠
  565. // 横向柱状图 xAxis中 type设置成value yAxis设置category ,serve中设置yAxisIndex可进行堆叠
  566. {
  567. type: 'category',
  568. axisTick: { show: false },
  569. axisLine: { show: false },
  570. axisLabel: {
  571. interval: 0,
  572. rotate: 0,
  573. color: '#ddd',
  574. fontSize: nowSize(13),
  575. margin: nowSize(5), //刻度标签与轴线之间的距离。
  576. },
  577. data: xData,
  578. },
  579. {
  580. type: 'category',
  581. axisLine: { show: false },
  582. axisTick: { show: false },
  583. axisLabel: { show: false },
  584. splitArea: { show: false },
  585. splitLine: { show: false },
  586. data: xData,
  587. },
  588. ],
  589. yAxis: {
  590. show: false,
  591. },
  592. series: [
  593. {
  594. type: "custom",
  595. renderItem: (params, api) => {
  596. const location = api.coord([api.value(0), api.value(1)]);
  597. return {
  598. type: "group",
  599. children: [
  600. {
  601. type: "CubeLeft",
  602. shape: {
  603. api,
  604. xValue: api.value(0),
  605. yValue: api.value(1),
  606. x: location[0],
  607. y: location[1],
  608. xAxisPoint: api.coord([api.value(0), 0]),
  609. },
  610. style: {
  611. fill: params.dataIndex % 2 === 0 ? leftColor1 : leftColor2
  612. }
  613. },
  614. {
  615. type: "CubeRight",
  616. shape: {
  617. api,
  618. xValue: api.value(0),
  619. yValue: api.value(1),
  620. x: location[0],
  621. y: location[1],
  622. xAxisPoint: api.coord([api.value(0), 0]),
  623. },
  624. style: {
  625. fill: params.dataIndex % 2 === 0 ? rightColor1 : rightColor2
  626. },
  627. },
  628. {
  629. type: "CubeTop",
  630. shape: {
  631. api,
  632. xValue: api.value(0),
  633. yValue: api.value(1),
  634. x: location[0],
  635. y: location[1],
  636. xAxisPoint: api.coord([api.value(0), 0]),
  637. },
  638. style: {
  639. fill: params.dataIndex % 2 === 0 ? topColor1 : topColor2
  640. },
  641. },
  642. ],
  643. };
  644. },
  645. data: yData,
  646. },
  647. {
  648. type: "bar",
  649. tooltip: {
  650. show: false
  651. },
  652. itemStyle: {
  653. color: "transparent",
  654. },
  655. label: {
  656. show: true,
  657. position: 'top',
  658. fontSize: nowSize(14),
  659. color: '#DFEEFA',
  660. offset: [0, nowSize(-9)],
  661. fontFamily: 'BarlowBold'
  662. },
  663. data: yData,
  664. },
  665. ],
  666. };
  667. cbgn = setOptions(ele, option)
  668. }
  669. let fsdll = null
  670. export function setFsdll(ele, dataIn) {
  671. if (fsdll) {
  672. fsdll.dispose()
  673. }
  674. let month = []; let value = [];
  675. dataIn.forEach(i => {
  676. month.push(i.month)
  677. value.push(i.value)
  678. })
  679. let option = {
  680. backgroundColor: 'transparent',
  681. tooltip: {
  682. trigger: 'axis',
  683. borderColor: "#092B46",
  684. backgroundColor: "#092B46",
  685. textStyle: {
  686. color: "#ddd",
  687. fontSize: nowSize(12),
  688. align: 'left'
  689. }
  690. },
  691. grid: {
  692. containLabel: true,
  693. top: '10%',
  694. left: '5%',
  695. right: '5%',
  696. bottom: '5%',
  697. },
  698. xAxis: [
  699. {
  700. type: 'category',
  701. axisLine: {
  702. show: false,
  703. },
  704. axisLabel: {
  705. show: true,
  706. color: '#ddd',
  707. fontSize: nowSize(12),
  708. interval: 1,
  709. },
  710. splitLine: {
  711. show: false,
  712. },
  713. axisTick: {
  714. show: false,
  715. },
  716. boundaryGap: false,
  717. data: month
  718. },
  719. ],
  720. yAxis: [
  721. {
  722. splitLine: {
  723. show: true,
  724. lineStyle: {
  725. color: '#8292a3',
  726. type: 'dashed',
  727. type: [nowSize(9), nowSize(4)],
  728. }
  729. },
  730. axisLine: {
  731. show: false,
  732. },
  733. axisLabel: {
  734. fontSize: nowSize(10),
  735. color: '#ddd'
  736. },
  737. axisTick: {
  738. show: false,
  739. },
  740. },
  741. ],
  742. series: [
  743. {
  744. type: 'line',
  745. symbol: 'circle',
  746. showSymbol: false,
  747. yAxisIndex: 0,
  748. lineStyle: {
  749. width: nowSize(3),
  750. color: 'rgba(59, 183, 229, 1)',
  751. shadowColor: 'rgba(59, 183, 229, 1)',
  752. shadowBlur: nowSize(15),
  753. shadowOffsetY: nowSize(-2)
  754. },
  755. label: {
  756. "show": false
  757. },
  758. itemStyle: {
  759. color: 'rgba(59, 183, 229, 1)',
  760. borderColor: 'rgba(59, 183, 229, 1)',
  761. borderWidth: nowSize(4),
  762. },
  763. areaStyle: {
  764. color: new echarts.graphic.LinearGradient(0, 0, 0, 1,
  765. [
  766. {
  767. offset: 0,
  768. color: 'rgba(59, 183, 229, 0.4)',
  769. },
  770. {
  771. offset: 1,
  772. color: 'rgba(59, 183, 229, 0)',
  773. },
  774. ],
  775. false
  776. ),
  777. },
  778. data: value,
  779. },
  780. ],
  781. };
  782. fsdll = setOptions(ele, option)
  783. }