Reputation: 3733
I seem to have trouble setting the font size of the text of a legend item when the font family is set to Courier.
legendItem.setStyle("fontFamily", "Courier");
legendItem.setStyle("fontSize", 7);
doesn't work.
But:
legendItem.setStyle("fontFamily", "Verdana");
legendItem.setStyle("fontSize", 7);
does!
Is this a Flex bug?
Upvotes: 0
Views: 1097
Reputation: 1885
I think the courier font dows not exist in your system.
If exists then use embeded fonts
Upvotes: 1