I have data tables in my Human UI project.
The columns widths will adapt to either the header text width OR the content width.
The problem is that there is no knowing in advance which will be the widest.
So I chose to add tildas to my header text to match the max. width of the column content.
The problem is that my formula would need to adjust to the number of uppercase letters since they are wider than lowercase.
Is there a plugin/component that can sort uppercase and lowercase characters ?
There’s actually a DataGridLengthUnitType.Auto switch (from the internal code perspective) which bases sizes on both header and content… But Human UI doesn’t support it. Maybe Andrew forgot about it…
Depending on what is in your text, you may need to count numbers and special characters (including spaces), which won’t show up as upper or lower case, as well…
Yes… I realize that to accurately evaluate the actual length of the text is a very difficult task.
It would require knowing the relative width of each and every ASCII character !