public enum LabelCollapseMode extends java.lang.Enum<LabelCollapseMode> implements ValueEnum
FacetChart.minLabelGap
).Enum Constant and Description |
---|
NONE
Show all labels regardless, even though they will overlap
|
NUMERIC
Pick round numbers in the range and show labels for just those numbers.
|
SAMPLE
Pick periodic values from the dataset and show labels for those.
|
TIME
Show significant time values such as the first day of the month or week.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static LabelCollapseMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LabelCollapseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelCollapseMode NONE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static final LabelCollapseMode TIME
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "time".
public static final LabelCollapseMode NUMERIC
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "numeric".
public static final LabelCollapseMode SAMPLE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "sample".
public static LabelCollapseMode[] values()
for (LabelCollapseMode c : LabelCollapseMode.values()) System.out.println(c);
public static LabelCollapseMode 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