You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
JavaScript
57 lines
1.1 KiB
JavaScript
import { commonConfig, displayOption } from 'packages/js/config'
|
|
|
|
export const settingConfig = {
|
|
padding: [30, 30, 30, 60],
|
|
legend: false,
|
|
isGroup: true,
|
|
data: [],
|
|
// 设置面板属性的显隐
|
|
displayOption: {
|
|
...displayOption,
|
|
params: {
|
|
enable: false
|
|
},
|
|
headerField: {
|
|
enable: false
|
|
},
|
|
metricField: {
|
|
// 指标
|
|
label: '指标',
|
|
enable: false,
|
|
multiple: false // 是否多选
|
|
},
|
|
dimensionField: {
|
|
// 表格列
|
|
label: '展示字段', // 维度/查询字段
|
|
enable: true,
|
|
multiple: false // 是否多选
|
|
}
|
|
}
|
|
}
|
|
const customConfig = {
|
|
type: 'digitalFlop',
|
|
root: {
|
|
contribution: false
|
|
},
|
|
customize: {
|
|
color: '#fff',
|
|
bgColor: '#007aff',
|
|
fontSize: 100,
|
|
width: 100,
|
|
borderRadius: 10,
|
|
borderColor: '#fff',
|
|
borderWidth: 1,
|
|
formatter: 3,
|
|
fontWeight: 500,
|
|
slotLeft: '',
|
|
slotRight: '',
|
|
marginRight: 20,
|
|
numberDigits: 5,
|
|
placeHolder: '0',
|
|
height: 125
|
|
}
|
|
}
|
|
export const dataConfig = {
|
|
...commonConfig(customConfig)
|
|
}
|