config.vue
2.41 KB
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
<template>
<!-- Echarts 全局设置 -->
<global-setting :optionData="optionData"></global-setting>
<CollapseItem v-for="(item, index) in seriesList" :key="index" :name="`${t('charts.chart.histogramText')}-${index+1}`" :expanded="true">
<SettingItemBox :name="t('charts.chart.graphicalText')">
<SettingItem :name="t('common.widthText')">
<n-input-number
v-model:value="item.barWidth"
:min="1"
:max="100"
size="small"
:name="t('common.autoCalcText')"
></n-input-number>
</SettingItem>
<SettingItem :name="t('charts.chart.filletText')">
<n-input-number
v-model:value="item.itemStyle.borderRadius"
:min="0"
size="small"
></n-input-number>
</SettingItem>
</SettingItemBox>
<setting-item-box :name="t('common.labelText')">
<setting-item>
<n-space>
<n-switch v-model:value="item.label.show" size="small" />
<n-text>{{t('charts.chart.displayTagsText')}}</n-text>
</n-space>
</setting-item>
<setting-item :name="t('charts.chart.sizeText')">
<n-input-number
v-model:value="item.label.fontSize"
size="small"
:min="1"
></n-input-number>
</setting-item>
<setting-item :name="t('common.colorText')">
<n-color-picker
size="small"
:modes="['hex']"
v-model:value="item.label.color"
></n-color-picker>
</setting-item>
<setting-item :name="t('common.positionText')">
<n-select
v-model:value="item.label.position"
:options="[
{ label: 'top', value: 'top' },
{ label: 'left', value: 'left' },
{ label: 'right', value: 'right' },
{ label: 'bottom', value: 'bottom' },
]"
/>
</setting-item>
</setting-item-box>
</CollapseItem>
</template>
<script setup lang="ts">
import { PropType, computed } from 'vue'
import { GlobalSetting, CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
import { option } from './config'
import { GlobalThemeJsonType } from '@/settings/chartThemes/index'
const props = defineProps({
optionData: {
type: Object as PropType<GlobalThemeJsonType>,
required: true
}
})
const t = window['$t']
const seriesList = computed(() => {
return props.optionData.series
})
</script>