mirror of
https://gitee.com/dromara/go-view.git
synced 2025-08-22 21:29:46 +08:00
41 lines
571 B
TypeScript
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'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|