public enum InteractiveElementType extends java.lang.Enum<InteractiveElementType>
RenderedElement. For each type, some additional
properties will usually be defined:
| Enum Constant and Description |
|---|
AXIS_LABEL
An axis label (the main label for an axis, not a tick label).
|
CATEGORY_AXIS_TICK_LABEL
A category axis tick label.
|
DATA_ITEM
A data item within a chart.
|
GRIDLINE
A gridline in the chart.
|
LEGEND
The legend (see also
LEGEND_ITEM). |
LEGEND_ITEM
An item within a legend (typically representing a series in the chart).
|
MARKER
A marker.
|
SECTION_LABEL
The section label for a pie chart.
|
SUBTITLE
The chart subtitle.
|
TITLE
The chart title.
|
VALUE_AXIS_TICK_LABEL
A value axis tick label.
|
| Modifier and Type | Method and Description |
|---|---|
static InteractiveElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InteractiveElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteractiveElementType DATA_ITEM
public static final InteractiveElementType TITLE
public static final InteractiveElementType SUBTITLE
public static final InteractiveElementType GRIDLINE
public static final InteractiveElementType AXIS_LABEL
public static final InteractiveElementType CATEGORY_AXIS_TICK_LABEL
public static final InteractiveElementType VALUE_AXIS_TICK_LABEL
public static final InteractiveElementType SECTION_LABEL
public static final InteractiveElementType LEGEND
LEGEND_ITEM).public static final InteractiveElementType LEGEND_ITEM
public static final InteractiveElementType MARKER
public static InteractiveElementType[] values()
for (InteractiveElementType c : InteractiveElementType.values()) System.out.println(c);
public static InteractiveElementType 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