public enum AutoScrollDataApproach extends java.lang.Enum<AutoScrollDataApproach> implements ValueEnum
Enum Constant and Description |
---|
BOTH
Expand the chart to make room for both labels and clusters (whichever requires more space).
|
CLUSTERS
Expand the chart to accommodate
FacetChart.barMargin ,
FacetChart.minBarThickness , and FacetChart.getMinClusterSize() . |
LABELS
Expand the chart to make room for data label facet value.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static AutoScrollDataApproach |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoScrollDataApproach[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoScrollDataApproach LABELS
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "labels".
public static final AutoScrollDataApproach CLUSTERS
FacetChart.barMargin
,
FacetChart.minBarThickness
, and FacetChart.getMinClusterSize()
.
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "clusters".
public static final AutoScrollDataApproach BOTH
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "both".
public static AutoScrollDataApproach[] values()
for (AutoScrollDataApproach c : AutoScrollDataApproach.values()) System.out.println(c);
public static AutoScrollDataApproach 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