Hi all.
I am currently trying to make a label in Arcade for a layer I am working on. I would like to have one of the lines (the one below in bold) in the label be a different font size than the rest of the label. Is there a way to do this within Arcade? I thought it would be in the TextFormatting constant but it doesn't seem to be.
Thanks, and please let me know what you think.
return 'Hard: ' +DomainName($feature, 'PER_HARDWO') +'%'+TextFormatting.NewLine+
'Con: '+DomainName($feature, 'PER_CONIFE')+'%'+TextFormatting.NewLine+
'Shrub: '+DomainName($feature, 'PER_SHRUB')+'%'+TextFormatting.NewLine+
'Herb: '+DomainName($feature, 'HERB_CODE')+'%'+TextFormatting.NewLine+
DomainName($feature, 'Map_Unit')+TextFormatting.NewLine+
'Acres: '+Ceil((($feature.Shape__Area)/4046.91),2);
-John