123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <div ref="chartRef" :style="{ height, width }"></div>
- </template>
- <script lang="ts">
- import { defineComponent, PropType, ref, Ref, reactive, watchEffect } from 'vue';
- import { useECharts } from '/@/hooks/web/useECharts';
- export default defineComponent({
- name: 'bar',
- props: {
- chartData: {
- type: Array,
- default: () => [],
- },
- option: {
- type: Object,
- default: () => ({}),
- },
- xAxisPropType: {
- type: String,
- required: true,
- },
- seriesPropType: {
- type: String,
- required: true,
- },
- width: {
- type: String as PropType<string>,
- default: '100%',
- },
- height: {
- type: String as PropType<string>,
- default: 'calc(100vh - 78px)',
- },
- },
- setup(props) {
- const chartRef = ref<HTMLDivElement | null>(null);
- const { setOptions, echarts } = useECharts(chartRef as Ref<HTMLDivElement>);
- const option = reactive({
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow',
- label: {
- show: true,
- backgroundColor: '#333',
- },
- },
- },
- grid: {
- left: 60,
- right: 50,
- bottom: 50,
- },
- xAxis: {
- type: 'category',
- data: [],
- },
- yAxis: {
- type: 'value',
- nameTextStyle: {
- fontSize: 14,
- },
- },
- series: [
- {
- name: 'bar',
- type: 'bar',
- showBackground: true,
- backgroundStyle: {
- color: 'rgba(220, 220, 220, 0.8)',
- },
- data: [],
- },
- ],
- });
- watchEffect(() => {
- props.chartData && initCharts();
- });
- function initCharts() {
- if (props.option) {
- Object.assign(option, props.option);
- }
- let seriesData = props.chartData.map((item: any) => {
- // return item.value;
- return item[props.seriesPropType];
- });
- let xAxisData = props.chartData.map((item: any) => {
- // return item.name;
- return item[props.xAxisPropType];
- });
- option.series[0].data = seriesData;
- option.xAxis.data = xAxisData;
- setOptions(option, false);
- }
- return { chartRef };
- },
- });
- </script>
|