We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
column配置width时,可以按比例均分剩余空间,但是当配置为minWidth时,无法均分
https://codesandbox.io/p/sandbox/ygj9w7?file=%2Fsrc%2FApp.js%3A8%2C7-8%2C15
const option = { columns: [ { field: "0", title: "name", minWidth: 100, }, { field: "1", title: "age", minWidth: 100, }, { field: "2", title: "gender", minWidth: 100, }, { field: "3", title: "hobby", minWidth: 100, }, ], widthMode: "adaptive", records: new Array(1000).fill(["John", 18, "male", "🏀"]), };
The text was updated successfully, but these errors were encountered:
测试了下,width 和 minWidth 同时指定时,如果都指定100,没有效果。但是如果width指定为101时,可以自适应宽度了
Sorry, something went wrong.
No branches or pull requests
What problem does this feature solve?
column配置width时,可以按比例均分剩余空间,但是当配置为minWidth时,无法均分
https://codesandbox.io/p/sandbox/ygj9w7?file=%2Fsrc%2FApp.js%3A8%2C7-8%2C15
What does the proposed API look like?
The text was updated successfully, but these errors were encountered: