feat: 新增折线图颜色控制

This commit is contained in:
MTrun
2022-03-09 20:27:53 +08:00
parent 159ffb4af2
commit 06b1e40930
7 changed files with 126 additions and 39 deletions
@@ -1 +1,2 @@
export * from './axis'
export * from './axis'
export * from './line'
@@ -0,0 +1,18 @@
export const lineConf = {
lineStyle: {
type: [
{
label: 'solid',
value: 'solid'
},
{
label: 'dashed',
value: 'dashed'
},
{
label: 'dotted',
value: 'dotted'
}
]
}
}