the_new_mr
the_new_mr

Reputation: 3733

Problem setting font size when font family is set to Courier in Flex

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

Answers (1)

Exhausted
Exhausted

Reputation: 1885

I think the courier font dows not exist in your system.

If exists then use embeded fonts

Embedded Fonts

Upvotes: 1

Related Questions