ChartItem.vue 2.74 KB
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
<script setup lang="ts">
import { reactive, onMounted } from 'vue';
import { getRandomPresetColor } from '../utils';
import * as echarts from 'echarts';
type EChartsOption = echarts.EChartsOption;
type ECharts = echarts.ECharts;

interface Props {
  id: string;
}
const props = withDefaults(defineProps<Props>(), {
  id: 'mychart',
});

interface ChartDomsType {
  [proppName: string]: ECharts | null | undefined;
}

const chartDoms = reactive<ChartDomsType>({});

onMounted(() => {
  setTimeout(() => {
    getLeftChart();
    getRightChart();
  }, 500);
});
function getLeftChart() {
  const id = `${props.id}-left`;
  const domkey = `chartLeftDom${props.id}`;

  let myChart = chartDoms[domkey];
  if (myChart != null && myChart != undefined) {
    chartDoms[domkey]?.dispose();
  }
  const chartDom = document.getElementById(id) as HTMLElement;
  if (chartDom) {
    myChart = echarts.init(chartDom);
    let option: EChartsOption;
    option = {
      color: getRandomPresetColor(),
      tooltip: {
        trigger: 'axis',
        axisPointer: {
          type: 'line',
        },
      },
      xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
      },
      yAxis: {
        type: 'value',
      },
      series: [
        {
          data: getRandomData(),
          type: 'line',
        },
      ],
    };
    option && myChart.setOption(option);
  }
}

function getRightChart() {
  const id = `${props.id}-right`;
  const domkey = `chartRightDom${props.id}`;

  let myChart = chartDoms[domkey];
  if (myChart != null && myChart != undefined) {
    chartDoms[domkey]?.dispose();
  }
  const chartDom = document.getElementById(id) as HTMLElement;
  if (chartDom) {
    myChart = echarts.init(chartDom);
    let option: EChartsOption;
    option = {
      color: getRandomPresetColor(),
      tooltip: {
        trigger: 'axis',
        axisPointer: {
          type: 'shadow',
        },
      },
      xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
      },
      yAxis: {
        type: 'value',
      },
      series: [
        {
          data: getRandomData(),
          type: 'bar',
        },
      ],
    };
    option && myChart.setOption(option);
  }
}

function getRandomData() {
  let arr = [];
  for (let i = 0; i < 7; i++) {
    arr.push(Math.round(Math.random() * 300));
  }
  return arr;
}
</script>
<template>
  <div class="map full-width">
    <div class="q-ml-sm" :id="`${props.id}-left`"></div>
    <div class="q-mr-sm" :id="`${props.id}-right`"></div>
  </div>
</template>

<style lang="scss" scoped>
.map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: $padding-md;
  > div {
    border: 1px solid $border-color;
    height: 600px;
  }
}
</style>