config-ucharts.js 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438
  1. /*
  2. * uCharts®
  3. * 高性能跨平台图表库,支持H5、APP、小程序(微信/支付宝/百度/头条/QQ/360)、Vue、Taro等支持canvas的框架平台
  4. * Copyright (c) 2021 QIUN®秋云 https://www.ucharts.cn All rights reserved.
  5. * Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  6. * 复制使用请保留本段注释,感谢支持开源!
  7. *
  8. * uCharts®官方网站
  9. * https://www.uCharts.cn
  10. *
  11. * 开源地址:
  12. * https://gitee.com/uCharts/uCharts
  13. *
  14. * uni-app插件市场地址:
  15. * http://ext.dcloud.net.cn/plugin?id=271
  16. *
  17. */
  18. // 主题颜色配置:如每个图表类型需要不同主题,请在对应图表类型上更改color属性
  19. const color = ["#0052d4", "#ff5959", "#f9b248", '#3CA272', '#73C0DE', '#ea7ccc', '#FC8452', '#9A60B4'];
  20. //事件转换函数,主要用作格式化x轴为时间轴,根据需求自行修改
  21. const formatDateTime = (timeStamp, returnType) => {
  22. var date = new Date();
  23. date.setTime(timeStamp * 1000);
  24. var y = date.getFullYear();
  25. var m = date.getMonth() + 1;
  26. m = m < 10 ? ('0' + m) : m;
  27. var d = date.getDate();
  28. d = d < 10 ? ('0' + d) : d;
  29. var h = date.getHours();
  30. h = h < 10 ? ('0' + h) : h;
  31. var minute = date.getMinutes();
  32. var second = date.getSeconds();
  33. minute = minute < 10 ? ('0' + minute) : minute;
  34. second = second < 10 ? ('0' + second) : second;
  35. if (returnType == 'full') {
  36. return y + '-' + m + '-' + d + ' ' + h + ':' + minute + ':' + second;
  37. }
  38. if (returnType == 'y-m-d') {
  39. return y + '-' + m + '-' + d;
  40. }
  41. if (returnType == 'h:m') {
  42. return h + ':' + minute;
  43. }
  44. if (returnType == 'h:m:s') {
  45. return h + ':' + minute + ':' + second;
  46. }
  47. return [y, m, d, h, minute, second];
  48. }
  49. const cfu = {
  50. //demotype为自定义图表类型,一般不需要自定义图表类型,只需要改根节点上对应的类型即可
  51. "type": ["pie", "ring", "rose", "word", "funnel", "map", "arcbar", "line", "column", "bar", "area", "radar",
  52. "gauge", "candle", "mix", "tline", "tarea", "scatter", "bubble", "demotype", "mainline", "mainradar",
  53. "mini-line", "mini-area", "mini-column","mini-rose"
  54. ],
  55. "range": ["饼状图", "圆环图", "玫瑰图", "词云图", "漏斗图", "地图", "圆弧进度条", "折线图", "柱状图", "条状图", "区域图", "雷达图", "仪表盘", "K线图",
  56. "混合图", "时间轴折线", "时间轴区域", "散点图", "气泡图", "自定义类型", "首页趋势图", "首页雷达图", "折线缩略图", "区域缩略图", "柱状缩略图", "玫瑰缩略图"
  57. ],
  58. //增加自定义图表类型,如果需要categories,请在这里加入您的图表类型,例如最后的"demotype"
  59. //自定义类型时需要注意"tline","tarea","scatter","bubble"等时间轴(矢量x轴)类图表,没有categories,不需要加入categories
  60. "categories": ["line", "column", "bar", "area", "radar", "gauge", "candle", "mix", "demotype", "mainline",
  61. "mainradar", "mini-line", "mini-area", "mini-column",
  62. ],
  63. //instance为实例变量承载属性,不要删除
  64. "instance": {},
  65. //option为opts及eopts承载属性,不要删除
  66. "option": {},
  67. //下面是自定义format配置,因除H5端外的其他端无法通过props传递函数,只能通过此属性对应下标的方式来替换
  68. "formatter": {
  69. "yAxisDemo1": function(val) {
  70. return val + '元'
  71. },
  72. "yAxisDemo2": function(val) {
  73. return val.toFixed(2)
  74. },
  75. "xAxisDemo1": function(val) {
  76. return val + '年'
  77. },
  78. "xAxisDemo2": function(val) {
  79. return formatDateTime(val, 'h:m')
  80. },
  81. "seriesDemo1": function(val) {
  82. return val + '元'
  83. },
  84. "tooltipDemo1": function(item, category, index, opts) {
  85. if (index == 0) {
  86. return '随便用' + item.data + '年'
  87. } else {
  88. return '其他我没改' + item.data + '天'
  89. }
  90. },
  91. "pieDemo": function(val, index, series) {
  92. if (index !== undefined) {
  93. return series[index].name + ':' + series[index].data + '元'
  94. }
  95. },
  96. },
  97. //这里演示了自定义您的图表类型的option,可以随意命名,之后在组件上 type="demotype" 后,组件会调用这个花括号里的option,如果组件上还存在opts参数,会将demotype与opts中option合并后渲染图表。
  98. "demotype": {
  99. //我这里把曲线图当做了自定义图表类型,您可以根据需要随意指定类型或配置
  100. "type": "line",
  101. "color": color,
  102. "padding": [15, 10, 0, 15],
  103. "xAxis": {
  104. "disableGrid": true,
  105. },
  106. "yAxis": {
  107. "gridType": "dash",
  108. "dashLength": 2,
  109. },
  110. "legend": {},
  111. "extra": {
  112. "line": {
  113. "type": "curve",
  114. "width": 2
  115. },
  116. }
  117. },
  118. //下面是自定义配置,请添加项目所需的通用配置
  119. "rose":{
  120. "type": "rose",
  121. "canvasId": "",
  122. "canvas2d": false,
  123. "background": "none",
  124. "animation": true,
  125. "timing": "easeOut",
  126. "duration": 1000,
  127. "color": [
  128. "#0052d4",
  129. "#ff5959",
  130. "#f9b248",
  131. "#3CA272",
  132. "#73C0DE",
  133. "#ff55a3"
  134. ],
  135. "padding": [
  136. 5,
  137. 5,
  138. 5,
  139. 5
  140. ],
  141. "rotate": false,
  142. "errorReload": true,
  143. "fontSize": 13,
  144. "fontColor": "#666666",
  145. "enableScroll": false,
  146. "touchMoveLimit": 60,
  147. "enableMarkLine": false,
  148. "dataLabel": false,
  149. "dataPointShape": false,
  150. "dataPointShapeType": "hollow",
  151. "tapLegend": true,
  152. "legend": {
  153. "show": true,
  154. "position": "bottom",
  155. "float": "center",
  156. "padding": 5,
  157. "margin": 5,
  158. "backgroundColor": "rgba(0,0,0,0)",
  159. "borderColor": "rgba(0,0,0,0)",
  160. "borderWidth": 0,
  161. "fontSize": 13,
  162. "fontColor": "#666666",
  163. "lineHeight": 25,
  164. "hiddenColor": "#CECECE",
  165. "itemGap": 10
  166. },
  167. "extra": {
  168. "rose": {
  169. "type": "radius",
  170. "minRadius": 50,
  171. "activeOpacity": 0.5,
  172. "activeRadius": 10,
  173. "offsetAngle": 0,
  174. "labelWidth": 15,
  175. "border": true,
  176. "borderWidth": 2,
  177. "borderColor": "#FFFFFF",
  178. "linearType": "none"
  179. },
  180. "tooltip": {
  181. "showBox": true,
  182. "showArrow": false,
  183. "showCategory": false,
  184. "borderWidth": 0,
  185. "borderRadius": 6,
  186. "borderColor": "#000000",
  187. "borderOpacity": 0.5,
  188. "bgColor": "#000000",
  189. "bgOpacity": 0.5,
  190. "gridType": "solid",
  191. "dashLength": 4,
  192. "gridColor": "#CCCCCC",
  193. "fontColor": "#FFFFFF",
  194. "splitLine": true,
  195. "horizentalLine": false,
  196. "xAxisLabel": false,
  197. "yAxisLabel": false,
  198. "labelBgColor": "#FFFFFF",
  199. "labelBgOpacity": 0.7,
  200. "labelFontColor": "#666666"
  201. }
  202. }
  203. },
  204. "arcbar": {
  205. "type": "arcbar",
  206. "color": color,
  207. "title": {
  208. "name": "百分比",
  209. "fontSize": 25,
  210. "color": "#0052d4"
  211. },
  212. "subtitle": {
  213. "name": "默认标题",
  214. "fontSize": 15,
  215. "color": "#666666"
  216. },
  217. "extra": {
  218. "arcbar": {
  219. "type": "default",
  220. "width": 12,
  221. "backgroundColor": "#E9E9E9",
  222. "startAngle": 0.75,
  223. "endAngle": 0.25,
  224. "gap": 2
  225. }
  226. }
  227. },
  228. "line": {
  229. "type": "line",
  230. "canvasId": "",
  231. "canvas2d": false,
  232. "background": "none",
  233. "animation": true,
  234. "timing": "easeOut",
  235. "duration": 1000,
  236. "color": [
  237. "#0052d4",
  238. "#ff5959",
  239. "#f9b248"
  240. ],
  241. "padding": [
  242. 1,
  243. 10,
  244. 8,
  245. 3
  246. ],
  247. "rotate": false,
  248. "errorReload": true,
  249. "fontSize": 12,
  250. "fontColor": "#696969",
  251. "enableScroll": false,
  252. "touchMoveLimit": 60,
  253. "enableMarkLine": true,
  254. "dataLabel": true,
  255. "dataPointShape": true,
  256. "dataPointShapeType": "solid",
  257. "tapLegend": true,
  258. "xAxis": {
  259. "disabled": false,
  260. "axisLine": true,
  261. "axisLineColor": "#CCCCCC",
  262. "calibration": false,
  263. "fontColor": "#696969",
  264. "fontSize": 12,
  265. "rotateLabel": false,
  266. "labelCount": 6,
  267. "itemCount": 5,
  268. "boundaryGap": "justify",
  269. "disableGrid": true,
  270. "gridColor": "#696969",
  271. "gridType": "solid",
  272. "dashLength": 4,
  273. "gridEval": 1,
  274. "scrollShow": false,
  275. "scrollAlign": "left",
  276. "scrollColor": "#F5F5F5",
  277. "scrollBackgroundColor": "#D3D3D3",
  278. "format": ""
  279. },
  280. "yAxis": {
  281. "disabled": false,
  282. "disableGrid": false,
  283. "splitNumber": 5,
  284. "gridType": "dash",
  285. "dashLength": 10,
  286. "gridColor": "#CCCCCC",
  287. "padding": 10,
  288. "showTitle": false,
  289. "data": []
  290. },
  291. "legend": {
  292. "show": true,
  293. "position": "top",
  294. "float": "right",
  295. "padding": 5,
  296. "margin": 15,
  297. "backgroundColor": "rgba(0,0,0,0)",
  298. "borderColor": "rgba(0,0,0,0)",
  299. "borderWidth": 0,
  300. "fontSize": 12,
  301. "fontColor": "#696969",
  302. "lineHeight": 10,
  303. "hiddenColor": "#CECECE",
  304. "itemGap": 10
  305. },
  306. "extra": {
  307. "line": {
  308. "type": "curve",
  309. "width": 2
  310. },
  311. "tooltip": {
  312. "showBox": true,
  313. "showArrow": false,
  314. "showCategory": false,
  315. "borderWidth": 0,
  316. "borderRadius": 6,
  317. "borderColor": "#000000",
  318. "borderOpacity": 0.5,
  319. "bgColor": "#000000",
  320. "bgOpacity": 0.5,
  321. "gridType": "dash",
  322. "dashLength": 8,
  323. "gridColor": "#CCCCCC",
  324. "fontColor": "#FFFFFF",
  325. "splitLine": true,
  326. "horizentalLine": false,
  327. "xAxisLabel": false,
  328. "yAxisLabel": false,
  329. "labelBgColor": "#FFFFFF",
  330. "labelBgOpacity": 0.7,
  331. "labelFontColor": "#666666"
  332. },
  333. "markLine": {
  334. "type": "dash",
  335. "dashLength": 8,
  336. "data": []
  337. }
  338. }
  339. },
  340. "column": {
  341. "type": "column",
  342. "canvasId": "",
  343. "canvas2d": false,
  344. "background": "none",
  345. "animation": true,
  346. "timing": "easeOut",
  347. "duration": 1000,
  348. "color": [
  349. "#0052d4",
  350. "#ff5959",
  351. "#f9b248"
  352. ],
  353. "padding": [
  354. 1,
  355. 10,
  356. 8,
  357. 3
  358. ],
  359. "rotate": false,
  360. "errorReload": true,
  361. "fontSize": 12,
  362. "fontColor": "#696969",
  363. "enableScroll": false,
  364. "touchMoveLimit": 60,
  365. "enableMarkLine": true,
  366. "dataLabel": true,
  367. "dataPointShape": true,
  368. "dataPointShapeType": "solid",
  369. "tapLegend": true,
  370. "xAxis": {
  371. "disabled": false,
  372. "axisLine": true,
  373. "axisLineColor": "#CCCCCC",
  374. "calibration": false,
  375. "fontColor": "#696969",
  376. "fontSize": 12,
  377. "rotateLabel": false,
  378. "labelCount": 6,
  379. "itemCount": 5,
  380. "boundaryGap": "center",
  381. "disableGrid": true,
  382. "gridColor": "#696969",
  383. "gridType": "dash",
  384. "dashLength": 4,
  385. "gridEval": 1,
  386. "scrollShow": false,
  387. "scrollAlign": "left",
  388. "scrollColor": "#F5F5F5",
  389. "scrollBackgroundColor": "#D3D3D3",
  390. "format": ""
  391. },
  392. "yAxis": {
  393. "disabled": false,
  394. "disableGrid": false,
  395. "splitNumber": 5,
  396. "gridType": "dash",
  397. "dashLength": 10,
  398. "gridColor": "#CCCCCC",
  399. "padding": 10,
  400. "showTitle": false,
  401. "data": []
  402. },
  403. "legend": {
  404. "show": true,
  405. "position": "top",
  406. "float": "right",
  407. "padding": 5,
  408. "margin": 15,
  409. "backgroundColor": "rgba(0,0,0,0)",
  410. "borderColor": "rgba(0,0,0,0)",
  411. "borderWidth": 0,
  412. "fontSize": 12,
  413. "fontColor": "#696969",
  414. "lineHeight": 10,
  415. "hiddenColor": "#CECECE",
  416. "itemGap": 10
  417. },
  418. "extra": {
  419. "column": {
  420. "type": "group",
  421. "width": 17,
  422. "seriesGap": 2,
  423. "categoryGap": 3,
  424. "barBorderCircle": false,
  425. "barBorderRadius": [
  426. 5,
  427. 5,
  428. 5,
  429. 5
  430. ],
  431. "linearType": "none",
  432. "linearOpacity": 1,
  433. "customColor": [
  434. "#0052d4",
  435. "#4364f7",
  436. "#6fb1fc",
  437. "#f5f5f5"
  438. ],
  439. "colorStop": 0,
  440. "meterBorder": 1,
  441. "meterFillColor": "#FFFFFF",
  442. "activeBgColor": "#000000",
  443. "activeBgOpacity": 0.05,
  444. "meterBorde": 1
  445. },
  446. "tooltip": {
  447. "showBox": true,
  448. "showArrow": false,
  449. "showCategory": false,
  450. "borderWidth": 0,
  451. "borderRadius": 6,
  452. "borderColor": "#000000",
  453. "borderOpacity": 0.5,
  454. "bgColor": "#000000",
  455. "bgOpacity": 0.5,
  456. "gridType": "dash",
  457. "dashLength": 8,
  458. "gridColor": "#CCCCCC",
  459. "fontColor": "#FFFFFF",
  460. "splitLine": true,
  461. "horizentalLine": false,
  462. "xAxisLabel": false,
  463. "yAxisLabel": false,
  464. "labelBgColor": "#FFFFFF",
  465. "labelBgOpacity": 0.7,
  466. "labelFontColor": "#666666"
  467. },
  468. "markLine": {
  469. "type": "dash",
  470. "dashLength": 8,
  471. "data": []
  472. }
  473. }
  474. },
  475. "bar": {
  476. "type": "bar",
  477. "canvasId": "",
  478. "canvas2d": false,
  479. "background": "none",
  480. "animation": true,
  481. "timing": "easeOut",
  482. "duration": 1000,
  483. "color": [
  484. "#0052d4",
  485. "#20a162"
  486. ],
  487. "padding": [
  488. 1,
  489. 18,
  490. 3,
  491. 3
  492. ],
  493. "rotate": false,
  494. "errorReload": true,
  495. "fontSize": 13,
  496. "fontColor": "#696969",
  497. "enableScroll": false,
  498. "touchMoveLimit": 60,
  499. "enableMarkLine": false,
  500. "dataLabel": false,
  501. "dataPointShape": true,
  502. "dataPointShapeType": "solid",
  503. "tapLegend": true,
  504. "xAxis": {
  505. "disabled": false,
  506. "axisLine": false,
  507. "axisLineColor": "#CCCCCC",
  508. "calibration": false,
  509. "fontColor": "#696969",
  510. "fontSize": 12,
  511. "rotateLabel": false,
  512. "itemCount": 5,
  513. "boundaryGap": "justify",
  514. "disableGrid": false,
  515. "gridColor": "#CCCCCC",
  516. "gridType": "dash",
  517. "dashLength": 8,
  518. "gridEval": 1,
  519. "scrollShow": false,
  520. "scrollAlign": "left",
  521. "scrollColor": "#A6A6A6",
  522. "scrollBackgroundColor": "#EFEBEF",
  523. "min": 0,
  524. "format": ""
  525. },
  526. "yAxis": {
  527. "disabled": false,
  528. "disableGrid": false,
  529. "splitNumber": 5,
  530. "gridType": "dash",
  531. "dashLength": 8,
  532. "gridColor": "#CCCCCC",
  533. "padding": 10,
  534. "showTitle": false,
  535. "data": []
  536. },
  537. "legend": {
  538. "show": true,
  539. "position": "top",
  540. "float": "right",
  541. "padding": 5,
  542. "margin": 5,
  543. "backgroundColor": "rgba(0,0,0,0)",
  544. "borderColor": "rgba(0,0,0,0)",
  545. "borderWidth": 0,
  546. "fontSize": 12,
  547. "fontColor": "#696969",
  548. "lineHeight": 10,
  549. "hiddenColor": "#CECECE",
  550. "itemGap": 10
  551. },
  552. "extra": {
  553. "bar": {
  554. "type": "group",
  555. "width": 14,
  556. "seriesGap": 2,
  557. "categoryGap": 4,
  558. "barBorderCircle": false,
  559. "barBorderRadius": [
  560. 3,
  561. 10,
  562. 3,
  563. 3
  564. ],
  565. "linearType": "none",
  566. "linearOpacity": 1,
  567. "colorStop": 0,
  568. "activeBgColor": "#000000",
  569. "activeBgOpacity": 0.08,
  570. "meterBorde": 1,
  571. "meterFillColor": "#FFFFFF"
  572. },
  573. "tooltip": {
  574. "showBox": true,
  575. "showArrow": false,
  576. "showCategory": false,
  577. "borderWidth": 0,
  578. "borderRadius": 6,
  579. "borderColor": "#000000",
  580. "borderOpacity": 0.5,
  581. "bgColor": "#000000",
  582. "bgOpacity": 0.5,
  583. "gridType": "solid",
  584. "dashLength": 4,
  585. "gridColor": "#CCCCCC",
  586. "fontColor": "#FFFFFF",
  587. "splitLine": true,
  588. "horizentalLine": false,
  589. "xAxisLabel": false,
  590. "yAxisLabel": false,
  591. "labelBgColor": "#FFFFFF",
  592. "labelBgOpacity": 0.7,
  593. "labelFontColor": "#666666"
  594. },
  595. "markLine": {
  596. "type": "solid",
  597. "dashLength": 4,
  598. "data": []
  599. }
  600. }
  601. },
  602. "area": {
  603. "type": "area",
  604. "canvasId": "",
  605. "canvas2d": false,
  606. "background": "none",
  607. "animation": true,
  608. "timing": "easeOut",
  609. "duration": 1000,
  610. "color": [
  611. "#0052d4",
  612. "#ff5959",
  613. "#f9b248"
  614. ],
  615. "padding": [
  616. 1,
  617. 10,
  618. 8,
  619. 3
  620. ],
  621. "rotate": false,
  622. "errorReload": true,
  623. "fontSize": 13,
  624. "fontColor": "#666666",
  625. "enableScroll": false,
  626. "touchMoveLimit": 60,
  627. "enableMarkLine": true,
  628. "dataLabel": true,
  629. "dataPointShape": true,
  630. "dataPointShapeType": "solid",
  631. "tapLegend": true,
  632. "xAxis": {
  633. "disabled": false,
  634. "axisLine": true,
  635. "axisLineColor": "#CCCCCC",
  636. "calibration": false,
  637. "fontColor": "#696969",
  638. "fontSize": 12,
  639. "rotateLabel": false,
  640. "labelCount": 6,
  641. "itemCount": 5,
  642. "boundaryGap": "justify",
  643. "disableGrid": true,
  644. "gridColor": "#CCCCCC",
  645. "gridType": "solid",
  646. "dashLength": 4,
  647. "gridEval": 1,
  648. "scrollShow": false,
  649. "scrollAlign": "left",
  650. "scrollColor": "#A6A6A6",
  651. "scrollBackgroundColor": "#EFEBEF",
  652. "format": ""
  653. },
  654. "yAxis": {
  655. "disabled": false,
  656. "disableGrid": false,
  657. "splitNumber": 5,
  658. "gridType": "dash",
  659. "dashLength": 10,
  660. "gridColor": "#CCCCCC",
  661. "padding": 10,
  662. "showTitle": false,
  663. "data": []
  664. },
  665. "legend": {
  666. "show": true,
  667. "position": "top",
  668. "float": "right",
  669. "padding": 5,
  670. "margin": 15,
  671. "backgroundColor": "rgba(0,0,0,0)",
  672. "borderColor": "rgba(0,0,0,0)",
  673. "borderWidth": 0,
  674. "fontSize": 12,
  675. "fontColor": "#696969",
  676. "lineHeight": 10,
  677. "hiddenColor": "#CECECE",
  678. "itemGap": 10
  679. },
  680. "extra": {
  681. "area": {
  682. "type": "straight",
  683. "opacity": 0.5,
  684. "addLine": true,
  685. "width": 2,
  686. "gradient": true
  687. },
  688. "tooltip": {
  689. "showBox": true,
  690. "showArrow": false,
  691. "showCategory": false,
  692. "borderWidth": 0,
  693. "borderRadius": 6,
  694. "borderColor": "#000000",
  695. "borderOpacity": 0.5,
  696. "bgColor": "#000000",
  697. "bgOpacity": 0.5,
  698. "gridType": "dash",
  699. "dashLength": 8,
  700. "gridColor": "#CCCCCC",
  701. "fontColor": "#FFFFFF",
  702. "splitLine": true,
  703. "horizentalLine": true,
  704. "xAxisLabel": false,
  705. "yAxisLabel": false,
  706. "labelBgColor": "#FFFFFF",
  707. "labelBgOpacity": 0.7,
  708. "labelFontColor": "#666666"
  709. },
  710. "markLine": {
  711. "type": "dash",
  712. "dashLength": 8,
  713. "data": []
  714. }
  715. }
  716. },
  717. "radar": {
  718. "type": "radar",
  719. "canvasId": "",
  720. "canvas2d": false,
  721. "background": "none",
  722. "animation": true,
  723. "timing": "easeOut",
  724. "duration": 1000,
  725. "color": [
  726. "#0052d4",
  727. "#ff5959",
  728. "#f9b248"
  729. ],
  730. "padding": [
  731. 0,
  732. 0,
  733. 0,
  734. 0
  735. ],
  736. "rotate": false,
  737. "errorReload": true,
  738. "fontSize": 13,
  739. "fontColor": "#696969",
  740. "enableScroll": false,
  741. "touchMoveLimit": 60,
  742. "enableMarkLine": false,
  743. "dataLabel": false,
  744. "dataPointShape": true,
  745. "dataPointShapeType": "solid",
  746. "tapLegend": true,
  747. "legend": {
  748. "show": true,
  749. "position": "bottom",
  750. "float": "center",
  751. "padding": 5,
  752. "margin": 5,
  753. "backgroundColor": "rgba(0,0,0,0)",
  754. "borderColor": "rgba(0,0,0,0)",
  755. "borderWidth": 0,
  756. "fontSize": 13,
  757. "fontColor": "#696969",
  758. "lineHeight": 10,
  759. "hiddenColor": "#CECECE",
  760. "itemGap": 10
  761. },
  762. "extra": {
  763. "radar": {
  764. "gridType": "circle",
  765. "gridColor": "#CCCCCC",
  766. "gridCount": 2,
  767. "labelColor": "#696969",
  768. "opacity": 0.3,
  769. "border": true,
  770. "borderWidth": 1,
  771. "max": 100
  772. },
  773. "tooltip": {
  774. "showBox": true,
  775. "showArrow": false,
  776. "showCategory": false,
  777. "borderWidth": 0,
  778. "borderRadius": 6,
  779. "borderColor": "#000000",
  780. "borderOpacity": 0.5,
  781. "bgColor": "#000000",
  782. "bgOpacity": 0.5,
  783. "gridType": "dash",
  784. "dashLength": 8,
  785. "gridColor": "#CCCCCC",
  786. "fontColor": "#FFFFFF",
  787. "splitLine": true,
  788. "horizentalLine": false,
  789. "xAxisLabel": false,
  790. "yAxisLabel": false,
  791. "labelBgColor": "#FFFFFF",
  792. "labelBgOpacity": 0.7,
  793. "labelFontColor": "#666666"
  794. }
  795. }
  796. },
  797. "mainline": {
  798. "type": "area",
  799. "canvasId": "",
  800. "canvas2d": false,
  801. "background": "none",
  802. "animation": true,
  803. "timing": "easeOut",
  804. "duration": 1000,
  805. "color": [
  806. "#6495ed"
  807. ],
  808. "padding": [
  809. 5,
  810. 0,
  811. 0,
  812. 0
  813. ],
  814. "rotate": false,
  815. "errorReload": true,
  816. "fontSize": 13,
  817. "fontColor": "#666666",
  818. "enableScroll": false,
  819. "touchMoveLimit": 60,
  820. "enableMarkLine": false,
  821. "dataLabel": false,
  822. "dataPointShape": true,
  823. "dataPointShapeType": "hollow",
  824. "tapLegend": true,
  825. "xAxis": {
  826. "disabled": true,
  827. "axisLine": false,
  828. "axisLineColor": "#CCCCCC",
  829. "calibration": false,
  830. "fontColor": "#666666",
  831. "fontSize": 13,
  832. "rotateLabel": false,
  833. "itemCount": 5,
  834. "boundaryGap": "center",
  835. "disableGrid": true,
  836. "gridColor": "#CCCCCC",
  837. "gridType": "solid",
  838. "dashLength": 4,
  839. "gridEval": 1,
  840. "scrollShow": false,
  841. "scrollAlign": "left",
  842. "scrollColor": "#A6A6A6",
  843. "scrollBackgroundColor": "#EFEBEF",
  844. "format": ""
  845. },
  846. "yAxis": {
  847. "disabled": true,
  848. "disableGrid": true,
  849. "splitNumber": 5,
  850. "gridType": "dash",
  851. "dashLength": 2,
  852. "gridColor": "#CCCCCC",
  853. "padding": 10,
  854. "showTitle": false,
  855. "data": []
  856. },
  857. "legend": {
  858. "show": false,
  859. "position": "bottom",
  860. "float": "center",
  861. "padding": 10,
  862. "margin": 0,
  863. "backgroundColor": "rgba(0,0,0,0)",
  864. "borderColor": "rgba(0,0,0,0)",
  865. "borderWidth": 0,
  866. "fontSize": 13,
  867. "fontColor": "#666666",
  868. "lineHeight": 11,
  869. "hiddenColor": "#CECECE",
  870. "itemGap": 10
  871. },
  872. "extra": {
  873. "area": {
  874. "type": "curve",
  875. "opacity": 1,
  876. "addLine": true,
  877. "width": 4,
  878. "gradient": true
  879. },
  880. "tooltip": {
  881. "showBox": true,
  882. "showArrow": true,
  883. "showCategory": false,
  884. "borderWidth": 0,
  885. "borderRadius": 5,
  886. "borderColor": "#000000",
  887. "borderOpacity": 0.5,
  888. "bgColor": "#000000",
  889. "bgOpacity": 0.5,
  890. "gridType": "solid",
  891. "dashLength": 4,
  892. "gridColor": "#CCCCCC",
  893. "fontColor": "#FFFFFF",
  894. "splitLine": false,
  895. "horizentalLine": false,
  896. "xAxisLabel": false,
  897. "yAxisLabel": false,
  898. "labelBgColor": "#FFFFFF",
  899. "labelBgOpacity": 0.5,
  900. "labelFontColor": "#666666"
  901. },
  902. "markLine": {
  903. "type": "solid",
  904. "dashLength": 4,
  905. "data": []
  906. }
  907. }
  908. },
  909. "mainradar": {
  910. "type": "radar",
  911. "canvasId": "",
  912. "canvas2d": false,
  913. "background": "none",
  914. "animation": true,
  915. "timing": "easeOut",
  916. "duration": 1000,
  917. "color": [
  918. "#0052d4",
  919. "#ff5959",
  920. "#f9b248"
  921. ],
  922. "padding": [
  923. 5,
  924. 5,
  925. 5,
  926. 5
  927. ],
  928. "rotate": false,
  929. "errorReload": true,
  930. "fontSize": 13,
  931. "fontColor": "#666666",
  932. "enableScroll": false,
  933. "touchMoveLimit": 60,
  934. "enableMarkLine": false,
  935. "dataLabel": false,
  936. "dataPointShape": false,
  937. "dataPointShapeType": "solid",
  938. "tapLegend": true,
  939. "legend": {
  940. "show": true,
  941. "position": "bottom",
  942. "float": "right",
  943. "padding": 5,
  944. "margin": 5,
  945. "backgroundColor": "rgba(0,0,0,0)",
  946. "borderColor": "rgba(0,0,0,0)",
  947. "borderWidth": 0,
  948. "fontSize": 13,
  949. "fontColor": "#666666",
  950. "lineHeight": 25,
  951. "hiddenColor": "#CECECE",
  952. "itemGap": 10
  953. },
  954. "extra": {
  955. "radar": {
  956. "gridType": "radar",
  957. "gridColor": "#CCCCCC",
  958. "gridCount": 1,
  959. "labelColor": "#666666",
  960. "opacity": 0.2,
  961. "border": true,
  962. "borderWidth": 2,
  963. "max": 100
  964. },
  965. "tooltip": {
  966. "showBox": true,
  967. "showArrow": true,
  968. "showCategory": false,
  969. "borderWidth": 0,
  970. "borderRadius": 5,
  971. "borderColor": "#000000",
  972. "borderOpacity": 0.5,
  973. "bgColor": "#000000",
  974. "bgOpacity": 0.5,
  975. "gridType": "solid",
  976. "dashLength": 4,
  977. "gridColor": "#CCCCCC",
  978. "fontColor": "#FFFFFF",
  979. "splitLine": false,
  980. "horizentalLine": false,
  981. "xAxisLabel": false,
  982. "yAxisLabel": false,
  983. "labelBgColor": "#FFFFFF",
  984. "labelBgOpacity": 0.5,
  985. "labelFontColor": "#666666"
  986. }
  987. }
  988. },
  989. "mini-line": {
  990. "type": "line",
  991. "canvasId": "",
  992. "canvas2d": false,
  993. "background": "none",
  994. "animation": true,
  995. "timing": "easeOut",
  996. "duration": 1000,
  997. "color": [
  998. "#0052d4",
  999. "#ff5959",
  1000. "#f9b248"
  1001. ],
  1002. "padding": [
  1003. 0,
  1004. 0,
  1005. 0,
  1006. 0
  1007. ],
  1008. "rotate": false,
  1009. "errorReload": true,
  1010. "fontSize": 13,
  1011. "fontColor": "#666666",
  1012. "enableScroll": false,
  1013. "touchMoveLimit": 60,
  1014. "enableMarkLine": false,
  1015. "dataLabel": false,
  1016. "dataPointShape": false,
  1017. "dataPointShapeType": "solid",
  1018. "tapLegend": false,
  1019. "xAxis": {
  1020. "disabled": true,
  1021. "axisLine": false,
  1022. "axisLineColor": "#CCCCCC",
  1023. "calibration": false,
  1024. "fontColor": "#666666",
  1025. "fontSize": 13,
  1026. "rotateLabel": false,
  1027. "itemCount": 5,
  1028. "boundaryGap": "center",
  1029. "disableGrid": true,
  1030. "gridColor": "#CCCCCC",
  1031. "gridType": "solid",
  1032. "dashLength": 4,
  1033. "gridEval": 1,
  1034. "scrollShow": false,
  1035. "scrollAlign": "left",
  1036. "scrollColor": "#A6A6A6",
  1037. "scrollBackgroundColor": "#EFEBEF",
  1038. "format": ""
  1039. },
  1040. "yAxis": {
  1041. "disabled": true,
  1042. "disableGrid": true,
  1043. "splitNumber": 5,
  1044. "gridType": "dash",
  1045. "dashLength": 2,
  1046. "gridColor": "#CCCCCC",
  1047. "padding": 10,
  1048. "showTitle": false,
  1049. "data": []
  1050. },
  1051. "legend": {
  1052. "show": false,
  1053. "position": "left",
  1054. "float": "center",
  1055. "padding": 5,
  1056. "margin": 5,
  1057. "backgroundColor": "rgba(0,0,0,0)",
  1058. "borderColor": "rgba(0,0,0,0)",
  1059. "borderWidth": 0,
  1060. "fontSize": 13,
  1061. "fontColor": "#666666",
  1062. "lineHeight": 11,
  1063. "hiddenColor": "#CECECE",
  1064. "itemGap": 10
  1065. },
  1066. "extra": {
  1067. "line": {
  1068. "type": "curve",
  1069. "width": 2
  1070. },
  1071. "tooltip": {
  1072. "showBox": false,
  1073. "showArrow": false,
  1074. "showCategory": false,
  1075. "borderWidth": 0,
  1076. "borderRadius": 0,
  1077. "borderColor": "#000000",
  1078. "borderOpacity": 0.7,
  1079. "bgColor": "#000000",
  1080. "bgOpacity": 0.7,
  1081. "gridType": "solid",
  1082. "dashLength": 4,
  1083. "gridColor": "#CCCCCC",
  1084. "fontColor": "#FFFFFF",
  1085. "splitLine": false,
  1086. "horizentalLine": false,
  1087. "xAxisLabel": false,
  1088. "yAxisLabel": false,
  1089. "labelBgColor": "#FFFFFF",
  1090. "labelBgOpacity": 0.7,
  1091. "labelFontColor": "#666666"
  1092. },
  1093. "markLine": {
  1094. "type": "solid",
  1095. "dashLength": 4,
  1096. "data": []
  1097. }
  1098. }
  1099. },
  1100. "mini-area": {
  1101. "type": "area",
  1102. "canvasId": "",
  1103. "canvas2d": false,
  1104. "background": "none",
  1105. "animation": true,
  1106. "timing": "easeOut",
  1107. "duration": 1000,
  1108. "color": [
  1109. "#0052d4",
  1110. "#ff5959",
  1111. "#f9b248"
  1112. ],
  1113. "padding": [
  1114. 15,
  1115. 15,
  1116. 0,
  1117. 15
  1118. ],
  1119. "rotate": false,
  1120. "errorReload": true,
  1121. "fontSize": 13,
  1122. "fontColor": "#666666",
  1123. "enableScroll": false,
  1124. "touchMoveLimit": 60,
  1125. "enableMarkLine": false,
  1126. "dataLabel": false,
  1127. "dataPointShape": false,
  1128. "dataPointShapeType": "solid",
  1129. "tapLegend": false,
  1130. "xAxis": {
  1131. "disabled": true,
  1132. "axisLine": false,
  1133. "axisLineColor": "#CCCCCC",
  1134. "calibration": false,
  1135. "fontColor": "#666666",
  1136. "fontSize": 13,
  1137. "rotateLabel": false,
  1138. "itemCount": 5,
  1139. "boundaryGap": "justify",
  1140. "disableGrid": true,
  1141. "gridColor": "#CCCCCC",
  1142. "gridType": "solid",
  1143. "dashLength": 4,
  1144. "gridEval": 1,
  1145. "scrollShow": false,
  1146. "scrollAlign": "left",
  1147. "scrollColor": "#A6A6A6",
  1148. "scrollBackgroundColor": "#EFEBEF",
  1149. "format": ""
  1150. },
  1151. "yAxis": {
  1152. "disabled": true,
  1153. "disableGrid": true,
  1154. "splitNumber": 5,
  1155. "gridType": "dash",
  1156. "dashLength": 2,
  1157. "gridColor": "#CCCCCC",
  1158. "padding": 10,
  1159. "showTitle": false,
  1160. "data": []
  1161. },
  1162. "legend": {
  1163. "show": false,
  1164. "position": "bottom",
  1165. "float": "center",
  1166. "padding": 5,
  1167. "margin": 5,
  1168. "backgroundColor": "rgba(0,0,0,0)",
  1169. "borderColor": "rgba(0,0,0,0)",
  1170. "borderWidth": 0,
  1171. "fontSize": 13,
  1172. "fontColor": "#666666",
  1173. "lineHeight": 11,
  1174. "hiddenColor": "#CECECE",
  1175. "itemGap": 10
  1176. },
  1177. "extra": {
  1178. "area": {
  1179. "type": "straight",
  1180. "opacity": 1,
  1181. "addLine": true,
  1182. "width": 2,
  1183. "gradient": true
  1184. },
  1185. "tooltip": {
  1186. "showBox": false,
  1187. "showArrow": false,
  1188. "showCategory": false,
  1189. "borderWidth": 0,
  1190. "borderRadius": 0,
  1191. "borderColor": "#000000",
  1192. "borderOpacity": 0.7,
  1193. "bgColor": "#000000",
  1194. "bgOpacity": 0.7,
  1195. "gridType": "solid",
  1196. "dashLength": 4,
  1197. "gridColor": "#CCCCCC",
  1198. "fontColor": "#FFFFFF",
  1199. "splitLine": false,
  1200. "horizentalLine": false,
  1201. "xAxisLabel": false,
  1202. "yAxisLabel": false,
  1203. "labelBgColor": "#FFFFFF",
  1204. "labelBgOpacity": 0.7,
  1205. "labelFontColor": "#666666"
  1206. },
  1207. "markLine": {
  1208. "type": "solid",
  1209. "dashLength": 4,
  1210. "data": []
  1211. }
  1212. }
  1213. },
  1214. "mini-column": {
  1215. "type": "column",
  1216. "canvasId": "",
  1217. "canvas2d": false,
  1218. "background": "none",
  1219. "animation": true,
  1220. "timing": "easeOut",
  1221. "duration": 1000,
  1222. "color": [
  1223. "#0052d4",
  1224. "#ff5959",
  1225. "#f9b248"
  1226. ],
  1227. "padding": [
  1228. 0,
  1229. 13,
  1230. 0,
  1231. 13
  1232. ],
  1233. "rotate": false,
  1234. "errorReload": true,
  1235. "fontSize": 13,
  1236. "fontColor": "#666666",
  1237. "enableScroll": false,
  1238. "touchMoveLimit": 60,
  1239. "enableMarkLine": false,
  1240. "dataLabel": false,
  1241. "dataPointShape": false,
  1242. "dataPointShapeType": "solid",
  1243. "tapLegend": true,
  1244. "xAxis": {
  1245. "disabled": true,
  1246. "axisLine": false,
  1247. "axisLineColor": "#CCCCCC",
  1248. "calibration": false,
  1249. "fontColor": "#666666",
  1250. "fontSize": 13,
  1251. "rotateLabel": false,
  1252. "itemCount": 5,
  1253. "boundaryGap": "center",
  1254. "disableGrid": true,
  1255. "gridColor": "#CCCCCC",
  1256. "gridType": "solid",
  1257. "dashLength": 4,
  1258. "gridEval": 1,
  1259. "scrollShow": false,
  1260. "scrollAlign": "left",
  1261. "scrollColor": "#A6A6A6",
  1262. "scrollBackgroundColor": "#EFEBEF",
  1263. "format": ""
  1264. },
  1265. "yAxis": {
  1266. "disabled": true,
  1267. "disableGrid": true,
  1268. "splitNumber": 5,
  1269. "gridType": "solid",
  1270. "dashLength": 8,
  1271. "gridColor": "#CCCCCC",
  1272. "padding": 10,
  1273. "showTitle": false,
  1274. "data": []
  1275. },
  1276. "legend": {
  1277. "show": false,
  1278. "position": "bottom",
  1279. "float": "center",
  1280. "padding": 5,
  1281. "margin": 5,
  1282. "backgroundColor": "rgba(0,0,0,0)",
  1283. "borderColor": "rgba(0,0,0,0)",
  1284. "borderWidth": 0,
  1285. "fontSize": 13,
  1286. "fontColor": "#666666",
  1287. "lineHeight": 11,
  1288. "hiddenColor": "#CECECE",
  1289. "itemGap": 10
  1290. },
  1291. "extra": {
  1292. "column": {
  1293. "type": "group",
  1294. "width": 10,
  1295. "seriesGap": 2,
  1296. "categoryGap": 3,
  1297. "barBorderCircle": false,
  1298. "barBorderRadius": [
  1299. 10,
  1300. 10,
  1301. 10,
  1302. 10
  1303. ],
  1304. "linearType": "opacity",
  1305. "linearOpacity": 0.7,
  1306. "customColor": [
  1307. "#0052d4",
  1308. "#FFFFFF",
  1309. "#ff5959",
  1310. "#FFFFFF"
  1311. ],
  1312. "colorStop": 0.5,
  1313. "meterBorder": 1,
  1314. "meterFillColor": "#FFFFFF",
  1315. "activeBgColor": "#FFFFFF",
  1316. "activeBgOpacity": 0.08,
  1317. "meterBorde": 1
  1318. },
  1319. "tooltip": {
  1320. "showBox": false,
  1321. "showArrow": false,
  1322. "showCategory": false,
  1323. "borderWidth": 0,
  1324. "borderRadius": 0,
  1325. "borderColor": "#000000",
  1326. "borderOpacity": 0.7,
  1327. "bgColor": "#000000",
  1328. "bgOpacity": 0.7,
  1329. "gridType": "solid",
  1330. "dashLength": 4,
  1331. "gridColor": "#CCCCCC",
  1332. "fontColor": "#FFFFFF",
  1333. "splitLine": false,
  1334. "horizentalLine": false,
  1335. "xAxisLabel": false,
  1336. "yAxisLabel": false,
  1337. "labelBgColor": "#FFFFFF",
  1338. "labelBgOpacity": 0.7,
  1339. "labelFontColor": "#666666"
  1340. },
  1341. "markLine": {
  1342. "type": "solid",
  1343. "dashLength": 4,
  1344. "data": []
  1345. }
  1346. }
  1347. },
  1348. "mini-rose":{
  1349. "type": "rose",
  1350. "canvasId": "",
  1351. "canvas2d": false,
  1352. "background": "none",
  1353. "animation": true,
  1354. "timing": "easeOut",
  1355. "duration": 1000,
  1356. "color": [
  1357. "#0052d4",
  1358. "#ff5959",
  1359. "#f9b248",
  1360. "#3CA272",
  1361. "#73C0DE",
  1362. "#ff55a3"
  1363. ],
  1364. "padding": [
  1365. 5,
  1366. 5,
  1367. 5,
  1368. 5
  1369. ],
  1370. "rotate": false,
  1371. "errorReload": true,
  1372. "fontSize": 13,
  1373. "fontColor": "#666666",
  1374. "enableScroll": false,
  1375. "touchMoveLimit": 60,
  1376. "enableMarkLine": false,
  1377. "dataLabel": false,
  1378. "dataPointShape": false,
  1379. "dataPointShapeType": "hollow",
  1380. "tapLegend": false,
  1381. "legend": {
  1382. "show": false,
  1383. "position": "bottom",
  1384. "float": "center",
  1385. "padding": 5,
  1386. "margin": 5,
  1387. "backgroundColor": "rgba(0,0,0,0)",
  1388. "borderColor": "rgba(0,0,0,0)",
  1389. "borderWidth": 0,
  1390. "fontSize": 13,
  1391. "fontColor": "#666666",
  1392. "lineHeight": 25,
  1393. "hiddenColor": "#CECECE",
  1394. "itemGap": 10
  1395. },
  1396. "extra": {
  1397. "rose": {
  1398. "type": "radius",
  1399. "minRadius": 50,
  1400. "activeOpacity": 0.5,
  1401. "activeRadius": 10,
  1402. "offsetAngle": 0,
  1403. "labelWidth": 15,
  1404. "border": true,
  1405. "borderWidth": 2,
  1406. "borderColor": "#FFFFFF",
  1407. },
  1408. "tooltip": {
  1409. "showBox": true,
  1410. "showArrow": false,
  1411. "showCategory": false,
  1412. "borderWidth": 0,
  1413. "borderRadius": 6,
  1414. "borderColor": "#000000",
  1415. "borderOpacity": 0.5,
  1416. "bgColor": "#000000",
  1417. "bgOpacity": 0.5,
  1418. "gridType": "solid",
  1419. "dashLength": 4,
  1420. "gridColor": "#CCCCCC",
  1421. "fontColor": "#FFFFFF",
  1422. "splitLine": true,
  1423. "horizentalLine": false,
  1424. "xAxisLabel": false,
  1425. "yAxisLabel": false,
  1426. "labelBgColor": "#FFFFFF",
  1427. "labelBgOpacity": 0.7,
  1428. "labelFontColor": "#666666"
  1429. }
  1430. }
  1431. }
  1432. }
  1433. export default cfu;