12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <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: 'BarAndLine',
- props: {
- chartData: {
- type: Array,
- default: () => [],
- },
- option: {
- type: Object,
- default: () => ({}),
- },
- xAxisPropType: {
- type: String,
- required: true,
- },
- propTypeArr: {
- type: Array,
- default: () => [],
- required: true,
- },
- width: {
- type: String as PropType<string>,
- default: '100%',
- },
- height: {
- type: String as PropType<string>,
- default: '100%',
- },
- },
- 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',
- },
- },
- },
- legend: {
- top: 10,
- textStyle: {
- color: '#ffffffee',
- },
- },
- xAxis: {
- type: 'category',
- splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
- data: [],
- },
- yAxis: {
- type: 'value',
- splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
- },
- series: [
- {
- name: 'bar',
- type: 'bar',
- data: [],
- },
- ],
- });
- watchEffect(() => {
- props.chartData && initCharts();
- });
- function initCharts() {
- if (props.option) {
- Object.assign(option, props.option);
- }
- //图例类型
- // let typeArr = Array.from(new Set(props.chartData.map((item) => item.type)));
- //轴数据
- let xAxisData = Array.from(new Set(props.chartData.map((item) => item[props.xAxisPropType])));
- [...props.propTypeArr].forEach((filed:string, index) => {
- option.series[index]['data'] = props.chartData.map(item => item[filed]);
- });
- option.xAxis.data = xAxisData;
- setOptions(option, false);
- }
- return { chartRef };
- },
- });
- </script>
|