mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-22 13:36:23 +08:00
42 lines
1000 B
TypeScript
42 lines
1000 B
TypeScript
import { PublicConfigClass } from '@/packages/public'
|
|
import { CreateComponentType } from '@/packages/index.d'
|
|
import { TextCommonConfig } from './index'
|
|
import cloneDeep from 'lodash/cloneDeep'
|
|
|
|
export enum WritingModeEnum {
|
|
HORIZONTAL = '水平',
|
|
VERTICAL = '垂直'
|
|
}
|
|
|
|
export const WritingModeObject = {
|
|
[WritingModeEnum.HORIZONTAL]: 'horizontal-tb',
|
|
[WritingModeEnum.VERTICAL]: 'vertical-rl'
|
|
}
|
|
|
|
export const option = {
|
|
link: '',
|
|
linkHead: 'http://',
|
|
dataset: '我是文本',
|
|
fontSize: 20,
|
|
fontColor: '#ffffff',
|
|
paddingX: 10,
|
|
paddingY: 10,
|
|
textAlign: 'center', // 水平对齐方式
|
|
|
|
// 边框
|
|
borderWidth: 0,
|
|
borderColor: '#ffffff',
|
|
borderRadius: 5,
|
|
|
|
// 字间距
|
|
letterSpacing: 5,
|
|
writingMode: 'horizontal-tb',
|
|
backgroundColor: '#00000000'
|
|
}
|
|
|
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
public key = TextCommonConfig.key
|
|
public chartConfig = cloneDeep(TextCommonConfig)
|
|
public option = cloneDeep(option)
|
|
}
|