Package com.smartgwt.client.types
Enum AutoScrollDataApproach
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<AutoScrollDataApproach>
,Constable
What should drive the automatic expansion of the chart?
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionExpand the chart to make room for both labels and clusters (whichever requires more space).Expand the chart to accommodateFacetChart.barMargin
,FacetChart.minBarThickness
, andFacetChart.getMinClusterSize()
.Expand the chart to make room for data label facet value. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static AutoScrollDataApproach
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.
-
Enum Constant Details
-
LABELS
Expand the chart to make room for data label facet value. Unused in Bar-type chartsIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "labels". -
CLUSTERS
Expand the chart to accommodateFacetChart.barMargin
,FacetChart.minBarThickness
, andFacetChart.getMinClusterSize()
.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "clusters". -
BOTH
Expand the chart to make room for both labels and clusters (whichever requires more space).If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "both".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-