Merge pull request #9954 from ulleo/dev

fix(X-Pack): 修复动态排序图轴标签会跳动的问题
This commit is contained in:
ulleo 2024-05-29 16:50:37 +08:00 committed by GitHub
commit b47bae8f9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -23,12 +23,12 @@
"vuex": "3.1.0" "vuex": "3.1.0"
}, },
"devDependencies": { "devDependencies": {
"autoprefixer": "^7.1.2",
"@babel/core": "^7.6.4", "@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9", "@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.18.6", "@babel/plugin-proposal-optional-chaining": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.6.2", "@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3", "@babel/preset-env": "^7.6.3",
"autoprefixer": "^7.1.2",
"babel-loader": "^8.0.6", "babel-loader": "^8.0.6",
"chalk": "^2.0.1", "chalk": "^2.0.1",
"copy-webpack-plugin": "^4.6.0", "copy-webpack-plugin": "^4.6.0",

View File

@ -583,6 +583,7 @@ export default {
} }
chart_option.yAxis.max = this.sliderMax; chart_option.yAxis.max = this.sliderMax;
chart_option.yAxis.data = chart.data.xs;
chart_option.animationDurationUpdate = this.sliderTimeout; chart_option.animationDurationUpdate = this.sliderTimeout;