areaChart.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <div :style="{ padding: '0' }">
  3. <div ref="area" style="width: 100%; height: 350px"></div>
  4. </div>
  5. </template>
  6. <script>
  7. import * as echarts from 'echarts'
  8. export default {
  9. name:"areaChart",
  10. props:{
  11. dataSource:{
  12. default:{
  13. x:[],
  14. pv:[],
  15. uv:[],
  16. enquiry: []
  17. }
  18. },
  19. },
  20. data() {
  21. return {
  22. myChart: null,
  23. }
  24. },
  25. mounted(){
  26. this.drawChart()
  27. },
  28. watch:{
  29. dataSource:{
  30. handler:function (n,o){
  31. this.drawChart()
  32. },
  33. deep:true
  34. },
  35. },
  36. methods:{
  37. drawChart() {
  38. let that = this
  39. // 基于准备好的dom,初始化echarts实例 这个和上面的main对应
  40. that.myChart = echarts.init(that.$refs.area);
  41. // 指定图表的配置项和数据
  42. let option = {
  43. tooltip: {
  44. trigger: 'axis',
  45. axisPointer: {
  46. type: 'cross',
  47. label: {
  48. backgroundColor: '#6a7985'
  49. }
  50. }
  51. },
  52. grid: {
  53. left: '20px',
  54. right: '40px',
  55. bottom: '0',
  56. top:'40px',
  57. containLabel: true
  58. },
  59. xAxis: [
  60. {
  61. type: 'category',
  62. boundaryGap: false,
  63. axisTick: {
  64. show: false
  65. },
  66. data: this.dataSource.x
  67. }
  68. ],
  69. yAxis: [
  70. {
  71. type: 'value'
  72. }
  73. ],
  74. series: [
  75. {
  76. name: 'UV',
  77. type: 'line',
  78. stack: 'UV',
  79. symbol: 'circle', //设定为实心点
  80. symbolSize: 6, //设定实心点的大小
  81. color:"#544BEB", //设定实线点的颜色
  82. areaStyle: {
  83. color:{
  84. type: 'linear',
  85. x: 0,
  86. y: 0,
  87. x2: 0,
  88. y2: 1,
  89. colorStops: [{
  90. offset: 0, color: '#544BEB' // 0% 处的颜色
  91. }, {
  92. offset: 1, color: '#fff' // 100% 处的颜色
  93. }],
  94. }
  95. },
  96. emphasis: {
  97. focus: 'series'
  98. },
  99. smooth:true,
  100. lineStyle:{
  101. color:'#544BEB',
  102. width:2
  103. },
  104. data: this.dataSource.uv
  105. },
  106. {
  107. name: 'PV',
  108. type: 'line',
  109. symbol: 'circle', //设定为实心点
  110. symbolSize: 6, //设定实心点的大小
  111. color:"#F0B358", //设定实线点的颜色
  112. stack: 'PV',
  113. areaStyle: {
  114. color:{
  115. type: 'linear',
  116. x: 0,
  117. y: 0,
  118. x2: 0,
  119. y2: 1,
  120. colorStops: [{
  121. offset: 0, color: '#F0B358' // 0% 处的颜色
  122. }, {
  123. offset: 1, color: '#fff' // 100% 处的颜色
  124. }],
  125. }
  126. },
  127. emphasis: {
  128. focus: 'series'
  129. },
  130. smooth:true,
  131. lineStyle:{
  132. color:'#F0B358',
  133. width:2
  134. },
  135. data: this.dataSource.pv
  136. },
  137. {
  138. name: '询盘数',
  139. type: 'line',
  140. symbol: 'circle', //设定为实心点
  141. symbolSize: 6, //设定实心点的大小
  142. color:"#58CCA8", //设定实线点的颜色
  143. stack: 'enquiry',
  144. areaStyle: {
  145. color:{
  146. type: 'linear',
  147. x: 0,
  148. y: 0,
  149. x2: 0,
  150. y2: 1,
  151. colorStops: [{
  152. offset: 0, color: '#58CCA8' // 0% 处的颜色
  153. }, {
  154. offset: 1, color: '#fff' // 100% 处的颜色
  155. }],
  156. }
  157. },
  158. emphasis: {
  159. focus: 'series'
  160. },
  161. smooth:true,
  162. lineStyle:{
  163. color:'#58CCA8',
  164. width:2
  165. },
  166. data: this.dataSource.enquiry
  167. }
  168. ]
  169. };
  170. // 使用刚指定的配置项和数据显示图表。
  171. that.myChart.setOption(option);
  172. window.addEventListener("resize", () => {
  173. that.myChart.resize();
  174. });
  175. },
  176. },
  177. beforeDestroy() {
  178. window.removeEventListener("resize", () => {
  179. this.myChart.resize();
  180. });
  181. },
  182. };
  183. </script>
  184. <style scoped>
  185. </style>