echartDate.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. var getDataCenter = function(xAxis = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], yAxis = [820, 1132, 901, 1134, 890, 1330, 920, 1000, 800, 900, 800, 1000],name) {
  2. // console.log((uni.getSystemInfoSync().screenWidth - 50) / yAxis.length);
  3. return {
  4. grid: {
  5. top: '30px',
  6. bottom: '30px',
  7. left: '24px',
  8. right: '24px'
  9. },
  10. tooltip: {
  11. trigger: 'axis',
  12. axisPointer: {
  13. type: 'shadow'
  14. }
  15. },
  16. xAxis: {
  17. type: 'category',
  18. boundaryGap: false,
  19. data: xAxis, //['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
  20. show: true,
  21. axisLine: {
  22. show: false,
  23. },
  24. axisLabel: {
  25. fontSize: 9
  26. },
  27. splitLine: {
  28. //x网格样式
  29. show: true,
  30. lineStyle: {
  31. color: "rgba(31,126,255,0.4)",
  32. type: "dashed",
  33. width: "1",
  34. },
  35. },
  36. axisTick: {
  37. show: false
  38. }
  39. },
  40. yAxis: {
  41. type: 'value',
  42. show: false
  43. },
  44. axisLine: {
  45. //是否显示以及样式设置
  46. show: true,
  47. onZero: true, //表示 X 轴或者 Y 轴的轴线是否在另一个轴的 0 刻度上,只有在另一个轴为数值轴且包含 0 刻度时有效。
  48. lineStyle: {
  49. color: '#7E85AB',
  50. type: 'dashed',
  51. }
  52. },
  53. series: [{
  54. name:name,
  55. data: yAxis, //[820, 1132, 901, 1134, 890, 1330, 920, 1000, 800, 900, 800, 1000],
  56. type: 'line',
  57. areaStyle: {
  58. color: {
  59. type: 'linear',
  60. x: 0,
  61. y: 0,
  62. x2: 0,
  63. y2: 1,
  64. colorStops: [{
  65. offset: 0,
  66. color: '#1F7EFF' // 0% 处的颜色
  67. }, {
  68. offset: 1,
  69. color: '#F8F8F8' // 100% 处的颜色
  70. }],
  71. global: false // 缺省为 false
  72. }
  73. },
  74. itemStyle: {
  75. normal: {
  76. label: {
  77. show: true,
  78. color: '#1F7EFF',
  79. offset: [0, -2],
  80. fontSize: 12,
  81. width: (uni.getSystemInfoSync().screenWidth - 50) / yAxis.length,
  82. overflow: 'truncate'
  83. }
  84. }
  85. },
  86. lineStyle: {
  87. color: '#1F7EFF'
  88. },
  89. symbol: 'circle',
  90. symbolSize: 6
  91. }]
  92. }
  93. }
  94. export default {
  95. getDataCenter
  96. }