Skip to content
New issue

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

[Feature] column指定minWidth时,widthMode为adaptive希望根据minWidth均分剩余空间 #3233

Open
qianchengjie opened this issue Dec 30, 2024 · 1 comment
Labels
feature 新需求

Comments

@qianchengjie
Copy link

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?

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", "🏀"]),
};
@qianchengjie qianchengjie added the feature 新需求 label Dec 30, 2024
@qianchengjie
Copy link
Author

测试了下,width 和 minWidth 同时指定时,如果都指定100,没有效果。但是如果width指定为101时,可以自适应宽度了

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 新需求
Projects
None yet
Development

No branches or pull requests

1 participant