lastEnergyChart.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <div
  3. class="lastChart"
  4. :class="[screenType==='hor' ? 'horizontalClass' : 'verticalClass verticalTemChart' ]"
  5. >
  6. <div class="head-title">
  7. <span>上月每日能耗</span>
  8. </div>
  9. <div
  10. id="lastChartBox"
  11. class="lastChartBox"
  12. ></div>
  13. </div>
  14. </template>
  15. <script>
  16. import G2 from '@antv/g2';
  17. // 自定义 shape, 支持图片形式的气泡
  18. G2.Shape.registerShape('interval', 'borderRadius', {
  19. draw: function draw(cfg, container) {
  20. var points = cfg.points;
  21. var path = [];
  22. path.push(['M', points[0].x, points[0].y]);
  23. path.push(['L', points[1].x, points[1].y]);
  24. path.push(['L', points[2].x, points[2].y]);
  25. path.push(['L', points[3].x, points[3].y]);
  26. path.push('Z');
  27. path = this.parsePath(path); // 将 0 - 1 转化为画布坐标
  28. return container.addShape('rect', {
  29. attrs: {
  30. x: path[1][1], // 矩形起始点为左上角
  31. y: path[1][2],
  32. width: path[2][1] - path[1][1],
  33. height: path[0][2] - path[1][2],
  34. fill: cfg.color,
  35. radius: (path[2][1] - path[1][1]) / 2
  36. }
  37. });
  38. }
  39. });
  40. export default {
  41. name: "TemChart",
  42. props: {
  43. screenType: {
  44. type: String,
  45. default: () => { return 'ver' } //hor 横屏 vert 竖屏
  46. }
  47. },
  48. created() {
  49. console.log("created");
  50. },
  51. mounted() {
  52. console.log("mounted");
  53. this.cInitChart();
  54. },
  55. data() {
  56. return {
  57. }
  58. },
  59. methods: {
  60. cInitChart() {
  61. var data = [
  62. { Date: '08-01', type: '订阅数', value: 1300 },
  63. { Date: '08-02', type: '订阅数', value: 1200 },
  64. { Date: '08-03', type: '订阅数', value: 1350 },
  65. { Date: '08-04', type: '订阅数', value: 1100 },
  66. { Date: '08-05', type: '订阅数', value: 1005 },
  67. { Date: '08-06', type: '订阅数', value: 1200 },
  68. { Date: '08-07', type: '订阅数', value: 1100 },
  69. { Date: '08-08', type: '订阅数', value: 1100 },
  70. { Date: '08-09', type: '订阅数', value: 1200 },
  71. { Date: '08-10', type: '订阅数', value: 900 },
  72. { Date: '08-11', type: '订阅数', value: 800 },
  73. { Date: '08-12', type: '订阅数', value: 970 },
  74. ];
  75. var chart = new G2.Chart({
  76. container: 'lastChartBox',
  77. forceFit: true,
  78. height: this.screenType === 'hor' ? 274 : 330,
  79. padding: [50, 40, 46, 60],
  80. });
  81. chart.source(data);
  82. chart.tooltip(false);
  83. chart.scale('Date', {
  84. //range: [0, 1],
  85. //tickCount: 2,
  86. //tickInterval
  87. // type: 'timeCat'
  88. });
  89. chart.scale('value', {
  90. //range: [0, 1],
  91. tickCount: 5,
  92. //tickInterval
  93. // type: 'timeCat'
  94. });
  95. chart.axis('Date', {
  96. line: {
  97. lineWidth: 1, // 设置线的宽度
  98. stroke: 'rgba(155, 152, 173,0.4)', // 设置线的颜色
  99. lineDash: [3, 3] // 设置虚线样式
  100. },
  101. label: {
  102. textStyle: {
  103. fill: '#9B98AD',
  104. fontSize: 12,
  105. }
  106. },
  107. tickLine: null
  108. });
  109. chart.axis('value', {
  110. tickLine: null,
  111. label: {
  112. textStyle: {
  113. fill: '#9B98AD',
  114. fontSize: 12,
  115. },
  116. // formatter: function formatter(text) {
  117. // return text;
  118. // }
  119. }
  120. });
  121. // chart.tooltip({
  122. // crosshairs: 'y'
  123. // });
  124. chart.legend(false);
  125. //#3E91F8 #76DEFF
  126. chart.interval().position('Date*value').color('l(90) 0:#3E91F8 1:#76DEFF').opacity(1).shape('borderRadius').adjust({ type: 'stack' }).size(12).label('value', {
  127. offset: 10,
  128. textStyle: {
  129. fill: '#3281F6',
  130. fontSize: 12
  131. }
  132. });
  133. chart.render();
  134. return chart;
  135. }
  136. }
  137. }
  138. </script>
  139. <style lang="less" scoped>
  140. .lastChart {
  141. padding: 24px 0 0 !important;
  142. .head-title {
  143. justify-content: space-between;
  144. padding: 0 32px;
  145. .rightVal {
  146. color: #39354e;
  147. font-size: 14px;
  148. font-weight: normal;
  149. }
  150. }
  151. .lastChartBox {
  152. width: 100%;
  153. height: 330px;
  154. }
  155. &.horizontalClass {
  156. .lastChartBox {
  157. height: 274px;
  158. }
  159. }
  160. }
  161. </style>