Sorry if I’ve missed this one somewhere else…
Is there a way to left align data on a tile? I’ve got a variable that is created by joining a string together. The display tile is centered, but ideally I’d want it to look as if it were in columns.
The expression that is generating it is:
HR = $context.response.data.leagueLeaders[0].leaders
myString = map(HR, concat(stringify(x.rank)," ",x.person.initLastName, " (",x.person.primaryPosition.abbreviation,")", " ",x.team.abbreviation," ",x.value))
join(myString, "\r\n")