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.

Boxes not of same width due to different text inside 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");
link|improve this question

56% accept rate
Can you show us the code you have so we understand your context a little better? – Brian Genisio Aug 22 '11 at 18:50
I don't think that showing the code will help. I think a screenshot to show what's happening would probably be more helpful to demonstrate what's happening. I'll put the code anyway. No harm :) – the_new_mr Aug 23 '11 at 10:18
Showing code always helps. If we are going to play around with it ourselves to reproduce and fix, we need to know what you are doing... With that in mind, can you show us the MXML that you are using to define your legend and legend items? You might need to use a custom renderer here... but without knowing if you are doing it or not already, it is difficult to know. – Brian Genisio Aug 24 '11 at 12:32
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.