| Package | com.esri.aws.services |
| Class | public class ThematicOptions |
| Property | Defined by | ||
|---|---|---|---|
| classificationMethod : String
The classification method for how the thematic data classes are divided.
| ThematicOptions | ||
| classLabels : Array
The labels for each class in the legend.
| ThematicOptions | ||
| numClasses : int = 2
The number of classes into which the data is classified.
| ThematicOptions | ||
| thematicOnlyLegend : Boolean = false
If true, only the thematic layers are shown in the legend.
| ThematicOptions | ||
| classificationMethod | property |
public var classificationMethod:StringThe classification method for how the thematic data classes are divided. Valid values are "equalInterval" or "quantile". The equal interval method divides the number of classes into equal intervals, regardless of how many members each class contains. The quantile method divides the number of classes so each class contains the same number of members, regardless of the interval range. classificationMethod is ignored if you use codeColorValues.
NOTE: Ranges are "lower <= value < upper", meaning that if a range says "2-3", it includes records with "2", but not "3".
The default value is "equalInterval".
| classLabels | property |
public var classLabels:ArrayThe labels for each class in the legend. The order of the classLabels values needs to match the order of the legend.
| numClasses | property |
public var numClasses:int = 2The number of classes into which the data is classified. Valid values are "2", "3", "4", "5", "6", or "7".
The default value is 2.
| thematicOnlyLegend | property |
public var thematicOnlyLegend:Boolean = falseIf true, only the thematic layers are shown in the legend.
The default value is false (meaning all map layers appear in the legend)..