2022-03-26 11:31:14 +08:00

41 lines
571 B
TypeScript

export const axisConfig = {
xposition: [
{
label: 'top',
value: 'top'
},
{
label: 'bottom',
value: 'bottom'
}
],
yposition: [
{
label: 'left',
value: 'left'
},
{
label: 'right',
value: 'right'
}
],
splitLint: {
lineStyle: {
type: [
{
label: 'solid',
value: 'solid'
},
{
label: 'dashed',
value: 'dashed'
},
{
label: 'dotted',
value: 'dotted'
}
]
}
}
}