Hi, I'm trying to generate a compound labelling expression where I have something like a town name, and then add in a second value followed by that value's label. I.e. I'd love for the label to read something like
Portland
5 d.u. / 1 acre
I've written my expression as $feature.Town + textformatting.newline + $feature.ZoningStrictness + "d.u./ 1 acre"
My labels are returning as:
Portland
5d.u./ 1 acre
If I change my expression to include: $feature.Town + textformatting.newline + $feature.ZoningStrictness + " " + "d.u./ 1 acre" (adding a space before the d.u./1 acre) it changes my expression to:
Portland
5
d.u./ 1 acre
Is there a way to add a space but not force a new line?