| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- const DEFAULT_COLOR = '#41464b'
- export const DEFAULT_TEXT = {
- type: 'text',
- left: 0,
- top: 0,
- width: 300,
- height: 0,
- opacity: 1,
- lineHeight: 1.5,
- segmentSpacing: 5,
- content: '请输入内容',
- }
- export const DEFAULT_IMAGE = {
- type: 'image',
- left: 0,
- top: 0,
- lockRatio: true,
- }
- export const DEFAULT_SHAPE = {
- type: 'shape',
- fill: DEFAULT_COLOR,
- lockRatio: false,
- }
- export const DEFAULT_LINE = {
- type: 'line',
- style: 'solid',
- marker: ['', ''],
- width: 4,
- color: DEFAULT_COLOR,
- }
- export const DEFAULT_CHART = {
- type: 'chart',
- left: 0,
- top: 0,
- width: 500,
- height: 500,
- }
- export const DEFAULT_TABLE = {
- type: 'table',
- left: 0,
- top: 0,
- isLock: false,
- borderStyle: 'solid',
- borderWidth: 2,
- borderColor: DEFAULT_COLOR,
- }
|