In my app in Xamarin.Forms I have a label that I want to be multiline but only to a certain point. After that it must be truncated. How can I achieve this?
Currently I can set the LineBreakMode to WordWrap; this creates a multiline label, but there is no truncating.
If it changed the LineBreakMode to TailTruncation, it always truncates after one line.