mirror of
https://gitee.com/dromara/go-view.git
synced 2026-05-30 00:00:05 +08:00
24 lines
674 B
Vue
24 lines
674 B
Vue
<template>
|
|
<!-- vCharts 全局设置 -->
|
|
<VChartGlobalSetting :optionData="optionData"></VChartGlobalSetting>
|
|
<Axis :axis="optionData.xAxis"></Axis>
|
|
<Axis :axis="optionData.yAxis"></Axis>
|
|
<!-- 标签 -->
|
|
<Label :optionData="optionData"></Label>
|
|
<!-- 柱体 -->
|
|
<Bar :optionData="optionData"></Bar>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { PropType } from 'vue'
|
|
import { VChartGlobalSetting, Axis, Label, Bar } from '@/components/Pages/VChartItemSetting'
|
|
import { vChartGlobalThemeJsonType } from '@/settings/vchartThemes/index'
|
|
|
|
defineProps({
|
|
optionData: {
|
|
type: Object as PropType<vChartGlobalThemeJsonType>,
|
|
required: true
|
|
}
|
|
})
|
|
</script>
|