eChartTemplate.vue 896 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div class="chart" id="charts_canvas" ref="chartRef"></div>
  3. </template>
  4. <script>
  5. import * as echarts from 'echarts';
  6. export default {
  7. props: {
  8. data: {
  9. type: Object,
  10. default: () => {},
  11. },
  12. },
  13. data() {
  14. return {
  15. chartObj: null,
  16. chartData: null,
  17. };
  18. },
  19. watch: {
  20. data() {
  21. this.chartData = JSON.parse(JSON.stringify(this.data))
  22. this.getChartData();
  23. },
  24. },
  25. methods: {
  26. getChartData() {
  27. if(!this.chartObj){
  28. this.chartObj = echarts.init(this.$refs.chartRef);
  29. }
  30. if(!this.chartData){
  31. this.chartData = JSON.parse(JSON.stringify(this.data))
  32. }
  33. this.chartObj.setOption(this.chartData);
  34. window.addEventListener("resize", () => {
  35. this.chartObj.resize();
  36. });
  37. },
  38. },
  39. mounted() {
  40. this.getChartData();
  41. },
  42. };
  43. </script>
  44. <style scoped>
  45. .chart {
  46. max-width: 100%;
  47. width: 100%;
  48. height: 100%;
  49. }
  50. </style>