public enum TextStyleHint extends java.lang.Enum<TextStyleHint>
RenderContent
.Enum Constant and Description |
---|
AxisLabels
Identifies style used to draw axis labels.
|
AxisTitle
Identifies style used to draw axis title.
|
DataLabels
Identifies style used to draw data labels.
|
LegendTitle
Identifies style used to draw legend title.
|
Subtitle
Identifies style used to draw chart's sub-title.
|
Title
Identifies style used to draw chart's title.
|
Widget
Identifies style used to draw text in UI widgets.
|
Modifier and Type | Method and Description |
---|---|
static TextStyleHint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextStyleHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextStyleHint Title
public static final TextStyleHint Subtitle
public static final TextStyleHint AxisLabels
public static final TextStyleHint AxisTitle
public static final TextStyleHint DataLabels
public static final TextStyleHint Widget
public static final TextStyleHint LegendTitle
public static TextStyleHint[] values()
for (TextStyleHint c : TextStyleHint.values()) System.out.println(c);
public static TextStyleHint valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null