Merge pull request #1693 from dataease/pr@dev@fix_antv

fix: AntV线宽
This commit is contained in:
Junjie
2022-01-26 10:51:14 +08:00
committed by GitHub

View File

@@ -157,8 +157,10 @@ export function baseAreaOptionAntV(plot, container, chart, action) {
size: parseInt(s.lineSymbolSize),
shape: s.lineSymbol
}
options.lineStyle = {
lineWidth: parseInt(s.lineWidth)
options.line = {
style: {
lineWidth: parseInt(s.lineWidth)
}
}
}
}