chart.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <script setup>
  2. import util from "@tools/util";
  3. import chartTheme from './../chartTheme.json'
  4. import { ref, toRaw, computed, onMounted, watch } from 'vue';
  5. import * as echarts from 'echarts'
  6. const chartId = 'chart-' + util.newGUID(); //chartId
  7. const chartIns = ref(null) //chart 实例
  8. const props = defineProps({
  9. xAxis: {
  10. type: Object,
  11. required: true,
  12. default: () => ({})
  13. },
  14. series: {
  15. type: Array,
  16. required: true
  17. },
  18. height: {
  19. type: String,
  20. required: false,
  21. default: '500px'
  22. },
  23. width: {
  24. type: String,
  25. required: false,
  26. default: '500px'
  27. },
  28. title: {
  29. type: String,
  30. required: false
  31. },
  32. subtext: {
  33. type: String,
  34. required: false
  35. },
  36. isRadar: { //是否显示雷达图
  37. type: Boolean,
  38. required: false,
  39. default: false
  40. }
  41. })
  42. /**定义option */
  43. const option = computed({
  44. get() {
  45. return {
  46. title: {
  47. text: props.title || '',
  48. subtext: props.subtext || '',
  49. top: 10,
  50. left: 30,
  51. },
  52. angleAxis: props.xAxis || {},
  53. radiusAxis: {},
  54. radar: props.isRadar? [ //雷达图设定区域
  55. {
  56. indicator: props.xAxis.data || [],
  57. center: ['60%','50%'],
  58. radius: '70%',
  59. splitLine: {
  60. show: false,
  61. },
  62. splitArea: {
  63. show: false
  64. }
  65. },
  66. ]: {},
  67. polar: {
  68. radius: '70%',
  69. center: ['60%','50%']
  70. },
  71. tooltip: {
  72. formatter: (params) => {
  73. return params.componentSubType==='radar'? `${params.name}` : `${params.seriesName}m<br/>${params.value>1? '频次:'+ params.value: ''}`
  74. },
  75. confine: true
  76. },
  77. series: props.series || [],
  78. legend: {
  79. show: true,
  80. orient: 'vertical',
  81. left: 30,
  82. // itemWidth: 16,
  83. // itemHeight: 10,
  84. textStyle: {
  85. // fontSize: util.vh(10)
  86. },
  87. top: 'middle',
  88. data: ['0-2.5','2.5-5','5-7.5','7.5-10','10-12.5','12.5-15','15-17.5','17.5-20','20-22.5','22.5-25','25-inf']
  89. }
  90. }
  91. },
  92. set(val) { }
  93. })
  94. watch(() => option, (newVal, oldVal) => {
  95. if (chartIns.value) {
  96. const echartIns = toRaw(chartIns.value)
  97. echartIns.setOption(newVal.value)
  98. }
  99. }, { deep: true })
  100. onMounted(() => {
  101. echarts.registerTheme('chartTheme', chartTheme)
  102. const echartIns = echarts.init(document.getElementById(chartId),'chartTheme')
  103. chartIns.value = echartIns
  104. echartIns.setOption(option.value)
  105. window.addEventListener('resize', () => {
  106. echartIns.resize()
  107. })
  108. })
  109. </script>
  110. <template>
  111. <div :id="chartId" :style="{ height: props.height, width: props.width }"></div>
  112. </template>