I have been trying to make it so that the text in legendItems are all the same width but to no avail.
Normally this is not a problem but when setting the opaqueBackground of the legendItem to a value other than white, the difference between them becomes more apparent with the right edges of the now coloured boxes not being aligned with each other.
I have performed a considerable amount of googling and searching on stackoverflow but have not found anything which seems to solve my problem.
I have found some questions on here that mention using monospace font and the measureText function but, surprisingly, setting the font to monospace didn't work and I'm not sure how I would use measureText in this scenario (or even if it would help me at all).
//Edit
Below is a screenshow demonstrating the problem. I have smudged out the text but you can see how the boxes (which are the opaqueBackgrounds) are of different lengths due to the different characters within them.

Here is the code as well.
switch(itemToSwitchOn)
{
case "Green":
legendItem.opaqueBackground = 0x00FF00;
break;
case "Grey":
legendItem.opaqueBackground = 0x737188;
legendItem.setStyle("color", 0xFFFFFF);
break;
case "Blue":
legendItem.opaqueBackground = 0x0000FF;
legendItem.setStyle("color", 0xFFFFFF);
break;
case "Red":
legendItem.opaqueBackground = 0xFF0000;
break;
default:
break;
}
Any and all help greatly appreciated.
// Edit 2
Turns out that the font was not being set to monospace font when I had tried before. Using:
legendItem.setStyle("fontFamily", "monospace");
didn't work. However, upon learning that other fonts are classified as monospace fonts (such as _typewriter and Courier), I found that setting the font to either of these fonts worked.
legendItem.setStyle("fonyFamily", "Courier");