Packagecom.esri.aws.services
Classpublic class ThematicOptions

Contains parameters for creating a thematic map.



Public Properties
 PropertyDefined 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
Property detail
classificationMethodproperty
public var classificationMethod:String

The 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".

classLabelsproperty 
public var classLabels:Array

The labels for each class in the legend. The order of the classLabels values needs to match the order of the legend.

numClassesproperty 
public var numClasses:int = 2

The number of classes into which the data is classified. Valid values are "2", "3", "4", "5", "6", or "7".

The default value is 2.

thematicOnlyLegendproperty 
public var thematicOnlyLegend:Boolean = false

If true, only the thematic layers are shown in the legend.

The default value is false (meaning all map layers appear in the legend)..