You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can add the title attribute to the chips in the grouparea and bind it to the area of the column name so that the full text can be previewed on mouse hover? How does that sound to you @tkiryu ?
@tkiryu The chip is designed to show limited content inside, which is why it has min and max dimensions by default. If you as a developer want to change the maximum dimensions, then you can do so by using:
.igx-chip__content {
max-width:300px;
}
The reason for constraining the chip is in cases when the content put inside is very large, we don't want to make the chip grow indefinitely and make it look ugly inside the application. Example:
Any kind of expandable functionality is up to the developer to implement, using the chip outputs that we've exposed. You can take the material guidelines as example and put in place some expandable functionality.
Description
I'd like to have a capability to see the whole text in
igx-chip
.Steps to reproduce
igx-chip
which has a text with ellipsis on group area.Result
Currently, we cannot see the whole text in
igx-chip
.Expected result
I'd like to have a capability to see the whole text in it.
For example,
Attachments
https://stackblitz.com/edit/igx-chips-on-grouping-area
The text was updated successfully, but these errors were encountered: