yTitle.font

Sets the Y-axis title font.

Type

java.awt.Font or font description

Example

Chart1.yTitle.font = new java.awt.Font('Serif', java.awt.Font.BOLD, 12);
Chart1.yTitle.font = 'Lucida Sans Unicode-BOLD-14';

Either syntax below can be used in component script:

yTitle.font            // unqualified
Chart1.yTitle.font     // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.