public enum SparkScale extends java.lang.Enum<SparkScale>
| Enum Constant and Description |
|---|
SparkScaleCustom
Specifies that the minimum or maximum value for the vertical axis of the
sparkline has a user-defined value.
|
SparkScaleGroup
Specifies that the minimum or maximum value for the vertical axes of all of
the sparklines in the group have the same value.
|
SparkScaleSingle
Specifies that the minimum or maximum value for the vertical axis of each
sparkline in the group is automatically set to its own calculated value.
|
| Modifier and Type | Method and Description |
|---|---|
static SparkScale |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SparkScale[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SparkScale SparkScaleGroup
public static final SparkScale SparkScaleSingle
public static final SparkScale SparkScaleCustom
public static SparkScale[] values()
for (SparkScale c : SparkScale.values()) System.out.println(c);
public static SparkScale 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