config-ucharts.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  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","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","bar","area","radar","gauge","candle","mix","demotype"],
  48. //instance为实例变量承载属性,不要删除
  49. "instance":{},
  50. //option为opts及eopts承载属性,不要删除
  51. "option":{},
  52. //下面是自定义format配置,因除H5端外的其他端无法通过props传递函数,只能通过此属性对应下标的方式来替换
  53. "formatter":{
  54. "moreDataShow":function(val,index,opts,series){return series.otherData[index] +'亿' + ';同比增长' + val + '%'},
  55. "yAxisDemo2":function(val){return val.toFixed(2)},
  56. "fix1":function(val,index,opts,series){return series.otherData[index] + '%'},
  57. "xAxisDemo1":function(val){return val+'年'},
  58. "xAxisDemo2":function(val){return formatDateTime(val,'h:m')},
  59. "seriesDemo1":function(val){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){
  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. "meterBorde": 1,
  330. "meterFillColor": "#FFFFFF",
  331. "activeBgColor": "#000000",
  332. "activeBgOpacity": 0.08
  333. },
  334. }
  335. },
  336. "bar":{
  337. "type": "bar",
  338. "color": color,
  339. "padding": [15,30,0,5],
  340. "xAxis": {
  341. "boundaryGap":"justify",
  342. "disableGrid":false,
  343. "min":0,
  344. "axisLine":false
  345. },
  346. "yAxis": {
  347. "data": [
  348. {
  349. "type": "categories",
  350. "fontSize": 10,
  351. "textAlign": "left",
  352. }
  353. ]
  354. },
  355. "legend": {
  356. },
  357. "extra": {
  358. "bar": {
  359. "type": "group",
  360. "width": 30,
  361. "meterBorde": 1,
  362. "meterFillColor": "#FFFFFF",
  363. "activeBgColor": "#000000",
  364. "activeBgOpacity": 0.08
  365. },
  366. }
  367. },
  368. "area":{
  369. "type": "area",
  370. "color": color,
  371. "padding": [15,15,0,15],
  372. "xAxis": {
  373. "disableGrid": true,
  374. },
  375. "yAxis": {
  376. "gridType": "dash",
  377. "dashLength": 2,
  378. },
  379. "legend": {
  380. },
  381. "extra": {
  382. "area": {
  383. "type": "straight",
  384. "opacity": 0.2,
  385. "addLine": true,
  386. "width": 2,
  387. "gradient": false
  388. },
  389. }
  390. },
  391. "radar":{
  392. "type": "radar",
  393. "color": color,
  394. "padding": [5,5,5,5],
  395. "dataLabel": false,
  396. "legend": {
  397. "show": true,
  398. "position": "right",
  399. "lineHeight": 25,
  400. },
  401. "extra": {
  402. "radar": {
  403. "gridType": "radar",
  404. "gridColor": "#CCCCCC",
  405. "gridCount": 3,
  406. "opacity": 0.2,
  407. "max": 200
  408. },
  409. }
  410. },
  411. "gauge":{
  412. "type": "gauge",
  413. "color": color,
  414. "title": {
  415. "name": "66Km/H",
  416. "fontSize": 25,
  417. "color": "#2fc25b",
  418. "offsetY": 50
  419. },
  420. "subtitle": {
  421. "name": "实时速度",
  422. "fontSize": 15,
  423. "color": "#1890ff",
  424. "offsetY": -50
  425. },
  426. "extra": {
  427. "gauge": {
  428. "type": "default",
  429. "width": 30,
  430. "labelColor": "#666666",
  431. "startAngle": 0.75,
  432. "endAngle": 0.25,
  433. "startNumber": 0,
  434. "endNumber": 100,
  435. "labelFormat": "",
  436. "splitLine": {
  437. "fixRadius": 0,
  438. "splitNumber": 10,
  439. "width": 30,
  440. "color": "#FFFFFF",
  441. "childNumber": 5,
  442. "childWidth": 12
  443. },
  444. "pointer": {
  445. "width": 24,
  446. "color": "auto"
  447. }
  448. }
  449. }
  450. },
  451. "candle":{
  452. "type": "candle",
  453. "color": color,
  454. "padding": [15,15,0,15],
  455. "enableScroll": true,
  456. "enableMarkLine": true,
  457. "dataLabel": false,
  458. "xAxis": {
  459. "labelCount": 4,
  460. "itemCount": 40,
  461. "disableGrid": true,
  462. "gridColor": "#CCCCCC",
  463. "gridType": "solid",
  464. "dashLength": 4,
  465. "scrollShow": true,
  466. "scrollAlign": "left",
  467. "scrollColor": "#A6A6A6",
  468. "scrollBackgroundColor": "#EFEBEF"
  469. },
  470. "yAxis": {
  471. },
  472. "legend": {
  473. },
  474. "extra": {
  475. "candle": {
  476. "color": {
  477. "upLine": "#f04864",
  478. "upFill": "#f04864",
  479. "downLine": "#2fc25b",
  480. "downFill": "#2fc25b"
  481. },
  482. "average": {
  483. "show": true,
  484. "name": ["MA5","MA10","MA30"],
  485. "day": [5,10,20],
  486. "color": ["#1890ff","#2fc25b","#facc14"]
  487. }
  488. },
  489. "markLine": {
  490. "type": "dash",
  491. "dashLength": 5,
  492. "data": [
  493. {
  494. "value": 2150,
  495. "lineColor": "#f04864",
  496. "showLabel": true
  497. },
  498. {
  499. "value": 2350,
  500. "lineColor": "#f04864",
  501. "showLabel": true
  502. }
  503. ]
  504. }
  505. }
  506. },
  507. "mix":{
  508. "type": "mix",
  509. "color": color,
  510. "padding": [15,15,0,15],
  511. "xAxis": {
  512. "disableGrid": true,
  513. },
  514. "yAxis": {
  515. "disabled": false,
  516. "disableGrid": false,
  517. "splitNumber": 5,
  518. "gridType": "dash",
  519. "dashLength": 4,
  520. "gridColor": "#CCCCCC",
  521. "padding": 10,
  522. "showTitle": true,
  523. "data": []
  524. },
  525. "legend": {
  526. },
  527. "extra": {
  528. "mix": {
  529. "column": {
  530. "width": 20
  531. }
  532. },
  533. }
  534. },
  535. "scatter":{
  536. "type": "scatter",
  537. "color":color,
  538. "padding":[15,15,0,15],
  539. "dataLabel":false,
  540. "xAxis": {
  541. "disableGrid": false,
  542. "gridType":"dash",
  543. "splitNumber":5,
  544. "boundaryGap":"justify",
  545. "min":0
  546. },
  547. "yAxis": {
  548. "disableGrid": false,
  549. "gridType":"dash",
  550. },
  551. "legend": {
  552. },
  553. "extra": {
  554. "scatter": {
  555. },
  556. }
  557. },
  558. "bubble":{
  559. "type": "bubble",
  560. "color":color,
  561. "padding":[15,15,0,15],
  562. "xAxis": {
  563. "disableGrid": false,
  564. "gridType":"dash",
  565. "splitNumber":5,
  566. "boundaryGap":"justify",
  567. "min":0,
  568. "max":250
  569. },
  570. "yAxis": {
  571. "disableGrid": false,
  572. "gridType":"dash",
  573. "data":[{
  574. "min":0,
  575. "max":150
  576. }]
  577. },
  578. "legend": {
  579. },
  580. "extra": {
  581. "bubble": {
  582. "border":2,
  583. "opacity": 0.5,
  584. },
  585. }
  586. }
  587. }
  588. export default cfu;