config-ucharts.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  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 = ['#1890FF', '#91CB74', '#FAC858', '#EE6666', '#73C0DE', '#3CA272', '#FC8452', '#9A60B4', '#ea7ccc'];
  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'){return y + '-' + m + '-' + d + ' '+ h +':' + minute + ':' + second;}
  36. if(returnType == 'y-m-d'){return y + '-' + m + '-' + d;}
  37. if(returnType == 'h:m'){return h +':' + minute;}
  38. if(returnType == 'h:m:s'){return h +':' + minute +':' + second;}
  39. return [y, m, d, h, minute, second];
  40. }
  41. const cfu = {
  42. //demotype为自定义图表类型,一般不需要自定义图表类型,只需要改根节点上对应的类型即可
  43. "type":["pie","ring","rose","word","funnel","map","arcbar","line","column","mount","bar","area","radar","gauge","candle","mix","tline","tarea","scatter","bubble","demotype"],
  44. "range":["饼状图","圆环图","玫瑰图","词云图","漏斗图","地图","圆弧进度条","折线图","柱状图","山峰图","条状图","区域图","雷达图","仪表盘","K线图","混合图","时间轴折线","时间轴区域","散点图","气泡图","自定义类型"],
  45. //增加自定义图表类型,如果需要categories,请在这里加入您的图表类型,例如最后的"demotype"
  46. //自定义类型时需要注意"tline","tarea","scatter","bubble"等时间轴(矢量x轴)类图表,没有categories,不需要加入categories
  47. "categories":["line","column","mount","bar","area","radar","gauge","candle","mix","demotype"],
  48. //instance为实例变量承载属性,不要删除
  49. "instance":{},
  50. //option为opts及eopts承载属性,不要删除
  51. "option":{},
  52. //下面是自定义format配置,因除H5端外的其他端无法通过props传递函数,只能通过此属性对应下标的方式来替换
  53. "formatter":{
  54. "toolTipParkingFlow":function(item, category, index, opts){return category+' '+item.name+' '+item.data+'车次'},
  55. "yAxisDemo1":function(val, index, opts){return val+'元'},
  56. "yAxisDemo2":function(val, index, opts){return val.toFixed(2)},
  57. "xAxisDemo1":function(val, index, opts){return val+'年';},
  58. "xAxisDemo2":function(val, index, opts){return formatDateTime(val,'h:m')},
  59. "seriesDemo1":function(val, index, series, opts){return val+'元'},
  60. "tooltipDemo1":function(item, category, index, opts){
  61. if(index==0){
  62. return '随便用'+item.data+'年'
  63. }else{
  64. return '其他我没改'+item.data+'天'
  65. }
  66. },
  67. "pieDemo":function(val, index, series, opts){
  68. if(index !== undefined){
  69. return series[index].name+':'+series[index].data+'元'
  70. }
  71. },
  72. },
  73. //这里演示了自定义您的图表类型的option,可以随意命名,之后在组件上 type="demotype" 后,组件会调用这个花括号里的option,如果组件上还存在opts参数,会将demotype与opts中option合并后渲染图表。
  74. "demotype":{
  75. //我这里把曲线图当做了自定义图表类型,您可以根据需要随意指定类型或配置
  76. "type": "line",
  77. "color": color,
  78. "padding": [15,10,0,15],
  79. "xAxis": {
  80. "disableGrid": true,
  81. },
  82. "yAxis": {
  83. "gridType": "dash",
  84. "dashLength": 2,
  85. },
  86. "legend": {
  87. },
  88. "extra": {
  89. "line": {
  90. "type": "curve",
  91. "width": 2
  92. },
  93. }
  94. },
  95. //下面是自定义配置,请添加项目所需的通用配置
  96. "pie":{
  97. "type": "pie",
  98. "color": color,
  99. "padding": [5,5,5,5],
  100. "extra": {
  101. "pie": {
  102. "activeOpacity": 0.5,
  103. "activeRadius": 10,
  104. "offsetAngle": 0,
  105. "labelWidth": 15,
  106. "border": true,
  107. "borderWidth": 3,
  108. "borderColor": "#FFFFFF"
  109. },
  110. }
  111. },
  112. "ring":{
  113. "type": "ring",
  114. "color": color,
  115. "padding": [5,5,5,5],
  116. "rotate": false,
  117. "dataLabel": true,
  118. "legend": {
  119. "show": true,
  120. "position": "right",
  121. "lineHeight": 25,
  122. },
  123. "title": {
  124. "name": "收益率",
  125. "fontSize": 15,
  126. "color": "#666666"
  127. },
  128. "subtitle": {
  129. "name": "70%",
  130. "fontSize": 25,
  131. "color": "#7cb5ec"
  132. },
  133. "extra": {
  134. "ring": {
  135. "ringWidth":30,
  136. "activeOpacity": 0.5,
  137. "activeRadius": 10,
  138. "offsetAngle": 0,
  139. "labelWidth": 15,
  140. "border": true,
  141. "borderWidth": 3,
  142. "borderColor": "#FFFFFF"
  143. },
  144. },
  145. },
  146. "rose":{
  147. "type": "rose",
  148. "color": color,
  149. "padding": [5,5,5,5],
  150. "legend": {
  151. "show": true,
  152. "position": "left",
  153. "lineHeight": 25,
  154. },
  155. "extra": {
  156. "rose": {
  157. "type": "area",
  158. "minRadius": 50,
  159. "activeOpacity": 0.5,
  160. "activeRadius": 10,
  161. "offsetAngle": 0,
  162. "labelWidth": 15,
  163. "border": false,
  164. "borderWidth": 2,
  165. "borderColor": "#FFFFFF"
  166. },
  167. }
  168. },
  169. "word":{
  170. "type": "word",
  171. "color": color,
  172. "extra": {
  173. "word": {
  174. "type": "normal",
  175. "autoColors": false
  176. }
  177. }
  178. },
  179. "funnel":{
  180. "type": "funnel",
  181. "color": color,
  182. "padding": [15,15,0,15],
  183. "extra": {
  184. "funnel": {
  185. "activeOpacity": 0.3,
  186. "activeWidth": 10,
  187. "border": true,
  188. "borderWidth": 2,
  189. "borderColor": "#FFFFFF",
  190. "fillOpacity": 1,
  191. "labelAlign": "right"
  192. },
  193. }
  194. },
  195. "map":{
  196. "type": "map",
  197. "color": color,
  198. "padding": [0,0,0,0],
  199. "dataLabel": true,
  200. "extra": {
  201. "map": {
  202. "border": true,
  203. "borderWidth": 1,
  204. "borderColor": "#666666",
  205. "fillOpacity": 0.6,
  206. "activeBorderColor": "#F04864",
  207. "activeFillColor": "#FACC14",
  208. "activeFillOpacity": 1
  209. },
  210. }
  211. },
  212. "arcbar":{
  213. "type": "arcbar",
  214. "color": color,
  215. "title": {
  216. "name": "百分比",
  217. "fontSize": 25,
  218. "color": "#00FF00"
  219. },
  220. "subtitle": {
  221. "name": "默认标题",
  222. "fontSize": 15,
  223. "color": "#666666"
  224. },
  225. "extra": {
  226. "arcbar": {
  227. "type": "default",
  228. "width": 12,
  229. "backgroundColor": "#E9E9E9",
  230. "startAngle": 0.75,
  231. "endAngle": 0.25,
  232. "gap": 2
  233. }
  234. }
  235. },
  236. "line":{
  237. "type": "line",
  238. "color": color,
  239. "padding": [15,10,0,15],
  240. "xAxis": {
  241. "disableGrid": true,
  242. },
  243. "yAxis": {
  244. "gridType": "dash",
  245. "dashLength": 2,
  246. },
  247. "legend": {
  248. },
  249. "extra": {
  250. "line": {
  251. "type": "straight",
  252. "width": 2
  253. },
  254. }
  255. },
  256. "tline":{
  257. "type": "line",
  258. "color": color,
  259. "padding": [15,10,0,15],
  260. "xAxis": {
  261. "disableGrid": false,
  262. "boundaryGap":"justify",
  263. },
  264. "yAxis": {
  265. "gridType": "dash",
  266. "dashLength": 2,
  267. "data":[
  268. {
  269. "min":0,
  270. "max":80
  271. }
  272. ]
  273. },
  274. "legend": {
  275. },
  276. "extra": {
  277. "line": {
  278. "type": "curve",
  279. "width": 2
  280. },
  281. }
  282. },
  283. "tarea":{
  284. "type": "area",
  285. "color": color,
  286. "padding": [15,10,0,15],
  287. "xAxis": {
  288. "disableGrid": true,
  289. "boundaryGap":"justify",
  290. },
  291. "yAxis": {
  292. "gridType": "dash",
  293. "dashLength": 2,
  294. "data":[
  295. {
  296. "min":0,
  297. "max":80
  298. }
  299. ]
  300. },
  301. "legend": {
  302. },
  303. "extra": {
  304. "area": {
  305. "type": "curve",
  306. "opacity": 0.2,
  307. "addLine": true,
  308. "width": 2,
  309. "gradient": true
  310. },
  311. }
  312. },
  313. "column":{
  314. "type": "column",
  315. "color": color,
  316. "padding": [15,15,0,5],
  317. "xAxis": {
  318. "disableGrid": true,
  319. },
  320. "yAxis": {
  321. "data":[{"min":0}]
  322. },
  323. "legend": {
  324. },
  325. "extra": {
  326. "column": {
  327. "type": "group",
  328. "width": 30,
  329. "activeBgColor": "#000000",
  330. "activeBgOpacity": 0.08
  331. },
  332. }
  333. },
  334. "mount":{
  335. "type": "mount",
  336. "color": color,
  337. "padding": [15,15,0,5],
  338. "xAxis": {
  339. "disableGrid": true,
  340. },
  341. "yAxis": {
  342. "data":[{"min":0}]
  343. },
  344. "legend": {
  345. },
  346. "extra": {
  347. "mount": {
  348. "type": "mount",
  349. "widthRatio": 1.5,
  350. },
  351. }
  352. },
  353. "bar":{
  354. "type": "bar",
  355. "color": color,
  356. "padding": [15,30,0,5],
  357. "xAxis": {
  358. "boundaryGap":"justify",
  359. "disableGrid":false,
  360. "min":0,
  361. "axisLine":false
  362. },
  363. "yAxis": {
  364. },
  365. "legend": {
  366. },
  367. "extra": {
  368. "bar": {
  369. "type": "group",
  370. "width": 30,
  371. "meterBorde": 1,
  372. "meterFillColor": "#FFFFFF",
  373. "activeBgColor": "#000000",
  374. "activeBgOpacity": 0.08
  375. },
  376. }
  377. },
  378. "area":{
  379. "type": "area",
  380. "color": color,
  381. "padding": [15,15,0,15],
  382. "xAxis": {
  383. "disableGrid": true,
  384. },
  385. "yAxis": {
  386. "gridType": "dash",
  387. "dashLength": 2,
  388. },
  389. "legend": {
  390. },
  391. "extra": {
  392. "area": {
  393. "type": "straight",
  394. "opacity": 0.2,
  395. "addLine": true,
  396. "width": 2,
  397. "gradient": false
  398. },
  399. }
  400. },
  401. "radar":{
  402. "type": "radar",
  403. "color": color,
  404. "padding": [5,5,5,5],
  405. "dataLabel": false,
  406. "legend": {
  407. "show": true,
  408. "position": "right",
  409. "lineHeight": 25,
  410. },
  411. "extra": {
  412. "radar": {
  413. "gridType": "radar",
  414. "gridColor": "#CCCCCC",
  415. "gridCount": 3,
  416. "opacity": 0.2,
  417. "max": 200
  418. },
  419. }
  420. },
  421. "gauge":{
  422. "type": "gauge",
  423. "color": color,
  424. "title": {
  425. "name": "66Km/H",
  426. "fontSize": 25,
  427. "color": "#2fc25b",
  428. "offsetY": 50
  429. },
  430. "subtitle": {
  431. "name": "实时速度",
  432. "fontSize": 15,
  433. "color": "#1890ff",
  434. "offsetY": -50
  435. },
  436. "extra": {
  437. "gauge": {
  438. "type": "default",
  439. "width": 30,
  440. "labelColor": "#666666",
  441. "startAngle": 0.75,
  442. "endAngle": 0.25,
  443. "startNumber": 0,
  444. "endNumber": 100,
  445. "labelFormat": "",
  446. "splitLine": {
  447. "fixRadius": 0,
  448. "splitNumber": 10,
  449. "width": 30,
  450. "color": "#FFFFFF",
  451. "childNumber": 5,
  452. "childWidth": 12
  453. },
  454. "pointer": {
  455. "width": 24,
  456. "color": "auto"
  457. }
  458. }
  459. }
  460. },
  461. "candle":{
  462. "type": "candle",
  463. "color": color,
  464. "padding": [15,15,0,15],
  465. "enableScroll": true,
  466. "enableMarkLine": true,
  467. "dataLabel": false,
  468. "xAxis": {
  469. "labelCount": 4,
  470. "itemCount": 40,
  471. "disableGrid": true,
  472. "gridColor": "#CCCCCC",
  473. "gridType": "solid",
  474. "dashLength": 4,
  475. "scrollShow": true,
  476. "scrollAlign": "left",
  477. "scrollColor": "#A6A6A6",
  478. "scrollBackgroundColor": "#EFEBEF"
  479. },
  480. "yAxis": {
  481. },
  482. "legend": {
  483. },
  484. "extra": {
  485. "candle": {
  486. "color": {
  487. "upLine": "#f04864",
  488. "upFill": "#f04864",
  489. "downLine": "#2fc25b",
  490. "downFill": "#2fc25b"
  491. },
  492. "average": {
  493. "show": true,
  494. "name": ["MA5","MA10","MA30"],
  495. "day": [5,10,20],
  496. "color": ["#1890ff","#2fc25b","#facc14"]
  497. }
  498. },
  499. "markLine": {
  500. "type": "dash",
  501. "dashLength": 5,
  502. "data": [
  503. {
  504. "value": 2150,
  505. "lineColor": "#f04864",
  506. "showLabel": true
  507. },
  508. {
  509. "value": 2350,
  510. "lineColor": "#f04864",
  511. "showLabel": true
  512. }
  513. ]
  514. }
  515. }
  516. },
  517. "mix":{
  518. "type": "mix",
  519. "color": color,
  520. "padding": [15,15,0,15],
  521. "xAxis": {
  522. "disableGrid": true,
  523. },
  524. "yAxis": {
  525. "disabled": false,
  526. "disableGrid": false,
  527. "splitNumber": 5,
  528. "gridType": "dash",
  529. "dashLength": 4,
  530. "gridColor": "#CCCCCC",
  531. "padding": 10,
  532. "showTitle": true,
  533. "data": []
  534. },
  535. "legend": {
  536. },
  537. "extra": {
  538. "mix": {
  539. "column": {
  540. "width": 20
  541. }
  542. },
  543. }
  544. },
  545. "scatter":{
  546. "type": "scatter",
  547. "color":color,
  548. "padding":[15,15,0,15],
  549. "dataLabel":false,
  550. "xAxis": {
  551. "disableGrid": false,
  552. "gridType":"dash",
  553. "splitNumber":5,
  554. "boundaryGap":"justify",
  555. "min":0
  556. },
  557. "yAxis": {
  558. "disableGrid": false,
  559. "gridType":"dash",
  560. },
  561. "legend": {
  562. },
  563. "extra": {
  564. "scatter": {
  565. },
  566. }
  567. },
  568. "bubble":{
  569. "type": "bubble",
  570. "color":color,
  571. "padding":[15,15,0,15],
  572. "xAxis": {
  573. "disableGrid": false,
  574. "gridType":"dash",
  575. "splitNumber":5,
  576. "boundaryGap":"justify",
  577. "min":0,
  578. "max":250
  579. },
  580. "yAxis": {
  581. "disableGrid": false,
  582. "gridType":"dash",
  583. "data":[{
  584. "min":0,
  585. "max":150
  586. }]
  587. },
  588. "legend": {
  589. },
  590. "extra": {
  591. "bubble": {
  592. "border":2,
  593. "opacity": 0.5,
  594. },
  595. }
  596. }
  597. }
  598. export default cfu;