Long labels in canvas Power Apps
As I'm maturing Power Apps canvas apps or canvas pages, one of the things that gives polish to the app is to truncate long labels. If the length of the text may exceed the width of the label, I like to:
- Use a formula to truncate the Label.Text and add "..." as a visual indicator to the app user that there's more than what's shown. `
2. Set the Label.Tooltip property to the full value so it's easily discoverable
Label.Tooltip= ThisItem.Name
I posted the details and some other practices on my snippets page in GitHub power-platform-snippets/power-fx.md at main · mathyousee/power-platform-snippets (github.com)