feat: 新增折线图颜色控制

This commit is contained in:
MTrun
2022-03-09 20:27:53 +08:00
parent f25ec3d6a7
commit 98100be99d
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'
}
]
}
}