41 lines
571 B
TypeScript
Raw Normal View History

2022-03-26 11:31:14 +08:00
export const axisConfig = {
2022-02-23 15:23:09 +08:00
xposition: [
{
label: 'top',
value: 'top'
},
{
label: 'bottom',
value: 'bottom'
}
],
yposition: [
{
label: 'left',
value: 'left'
},
{
label: 'right',
value: 'right'
}
],
2022-02-23 14:11:33 +08:00
splitLint: {
lineStyle: {
type: [
{
label: 'solid',
value: 'solid'
},
{
label: 'dashed',
value: 'dashed'
},
{
label: 'dotted',
value: 'dotted'
}
]
}
}
}