123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import { commonConfig, displayOption } from 'data-room-ui/js/config'
- export const settingConfig = {
- theme: 'dark',
- text: '文本标签占位符',
-
- displayOption: {
- ...displayOption,
- metricField: {
-
- label: '指标',
- enable: true,
- multiple: false
- },
- dimensionField: {
-
- label: '维度',
- enable: false,
- multiple: true
- }
- }
- }
- const customConfig = {
- type: 'texts',
- root: {
- version: '2023071001',
- url: 'https://www.runoob.com/'
- },
- customize: {
- title: '文本标签占位符',
- fontSize: 20,
- fontWeight: 700,
- color: 'left,#ffffff,#ffffff'
- }
- }
- export const dataConfig = {
- ...commonConfig(customConfig)
- }
|