fix(chart-line): fix line-chart tooltip.axisPointer.lineStyle does not take effect close #130 (#131)

This commit is contained in:
Kagol 2023-04-12 14:58:14 +08:00 committed by GitHub
parent 5e0aad622b
commit 868e1cf47e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -217,5 +217,5 @@ export const line = (columns, rows, settings, extra) => {
let options = { legend, xAxis, series, yAxis, tooltip }
return options
return { ...options, ...settings }
}