pieChart.vue 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div ref="chartDom" class="charts"></div>
  3. </template>
  4. <script setup>
  5. import { onMounted, ref } from "vue";
  6. import * as echarts from "echarts";
  7. import { pieOption } from "./options/pieOption.js";
  8. const props = defineProps({
  9. styleName: {
  10. type: String,
  11. default: "styleName1",
  12. },
  13. xData: {
  14. type: Array,
  15. default: () => [],
  16. },
  17. yData: {
  18. type: Array,
  19. default: () => [],
  20. },
  21. });
  22. const chartDom = ref(null);
  23. const myChart = ref(null);
  24. const options = ref(null);
  25. const initData = () => {
  26. // pieOption[props.styleName].xAxis.data = props.xData;
  27. // pieOption[props.styleName].series[0].data = props.yData;
  28. options.value = pieOption[props.styleName];
  29. myChart.value.setOption(options.value);
  30. };
  31. onMounted(() => {
  32. myChart.value = echarts.init(chartDom.value);
  33. initData();
  34. });
  35. </script>
  36. <style lang="scss" scoped>
  37. .charts {
  38. width: 100%;
  39. height: 100%;
  40. }
  41. </style>