DiagramsChart.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <div ref="chartsWrapperRef" class="diagrams-chart-container" :style="{ width: containerWidth }"></div>
  3. </template>
  4. <script>
  5. import echarts from 'echarts'
  6. export default {
  7. props: {
  8. statisticalData: { type: Object, default: () => {} },
  9. chartTitle: { type: String, default: '' }
  10. },
  11. data() {
  12. return {
  13. instance: null,
  14. chartData: {},
  15. containerWidth: 700
  16. }
  17. },
  18. mounted() {
  19. this.init()
  20. },
  21. watch: {
  22. statisticalData: {
  23. handler(newValue) {
  24. this.chartData = newValue
  25. this.updataCharData()
  26. },
  27. immediate: true,
  28. deep: true
  29. },
  30. containerWidth: {
  31. handler() {
  32. if (this.instance) {
  33. this.resize()
  34. }
  35. },
  36. immediate: true
  37. }
  38. },
  39. methods: {
  40. init() {
  41. this.instance = echarts.init(this.$refs.chartsWrapperRef)
  42. this.instance.setOption({
  43. title: { subtext: this.chartTitle },
  44. grid: { left: '7%', right: '3%', top: '20%', bottom: '9%' },
  45. tooltip: {
  46. trigger: 'axis',
  47. showDelay: 10,
  48. padding: 0,
  49. axisPointer: {
  50. type: 'shadow',
  51. shadowStyle: {
  52. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  53. { offset: 0, color: 'rgba(225, 228, 255, 0)' },
  54. { offset: 1, color: '#E1E4FF' }
  55. ])
  56. }
  57. },
  58. formatter(options) {
  59. return `
  60. <div style="
  61. padding: 0;
  62. border: 1px solid #f4f8ff;
  63. padding: 8px 16px;
  64. background: linear-gradient(180deg, rgba(238, 245, 255, 0.6) 0%, rgba(219, 233, 253, 0.6) 100%);
  65. border-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%) 1;
  66. border-radius: 4px;
  67. color: #3d3d3d;
  68. font-size: 16px;
  69. font-weight: bold
  70. ">${options[0].value}</div>
  71. `
  72. }
  73. },
  74. xAxis: {
  75. offset: 5,
  76. axisTick: { show: false },
  77. axisLine: { show: false },
  78. axisLabel: { color: '#A4A4A4', fontSize: 14 },
  79. data: []
  80. },
  81. yAxis: {
  82. axisLine: { show: false },
  83. axisTick: { show: false },
  84. axisLabel: { color: '#A4A4A4', fontSize: 14 },
  85. splitLine: {
  86. show: true,
  87. lineStyle: {
  88. width: 1,
  89. color: "#F3F4F8"
  90. }
  91. }
  92. },
  93. series: [
  94. {
  95. zlevel: 100,
  96. name: '销量',
  97. type: 'bar',
  98. data: [],
  99. barWidth: '24px',
  100. itemStyle: {
  101. borderRadius: 5,
  102. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  103. { offset: 0, color: '#188df0' },
  104. { offset: 1, color: '#495FFF' }
  105. ])
  106. }
  107. }
  108. ]
  109. })
  110. },
  111. updataCharData(xData1, yData1) {
  112. if (!this.instance || !this.instance.setOption || typeof this.chartData !== 'object') {
  113. return
  114. }
  115. const xData = xData1 || Object.keys(this.chartData)
  116. const yData = yData1 || Object.values(this.chartData)
  117. this.instance.setOption({
  118. xAxis: {
  119. data: xData
  120. },
  121. series: [
  122. {
  123. zlevel: 100,
  124. name: '销量',
  125. type: 'bar',
  126. data: yData,
  127. barWidth: '24px',
  128. itemStyle: {
  129. borderRadius: 5,
  130. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  131. { offset: 0, color: '#188df0' },
  132. { offset: 1, color: '#495FFF' }
  133. ])
  134. }
  135. }
  136. ]
  137. })
  138. },
  139. resize() {
  140. this.containerWidth = this.$parent.$el.clientWidth
  141. this.updataCharData()
  142. this.instance.resize()
  143. }
  144. }
  145. }
  146. </script>
  147. <style lang="scss" scoped>
  148. .diagrams-chart-container {
  149. /* width: 700px; */
  150. height: 265px;
  151. }
  152. </style>