Files
go-view/src/packages/chartConfiguration/echarts/line.ts
T
2022-03-09 20:27:53 +08:00

19 lines
260 B
TypeScript

export const lineConf = {
lineStyle: {
type: [
{
label: 'solid',
value: 'solid'
},
{
label: 'dashed',
value: 'dashed'
},
{
label: 'dotted',
value: 'dotted'
}
]
}
}