| Package | com.esri.bacore.thematicmapping.symbolization |
| Class | public final class ClassificationResults |
| Inheritance | ClassificationResults Object |
See also
| Property | Defined By | ||
|---|---|---|---|
| count : int [read-only]
The number of class breaks in this collection. | ClassificationResults | ||
| maximumValue : Number [read-only]
Maximum value in data classified. | ClassificationResults | ||
| minimumValue : Number [read-only]
Minimum value in data classified. | ClassificationResults | ||
| valueFormat : ValueFormat
Format recommended for formatting a thematic value. | ClassificationResults | ||
| Method | Defined By | ||
|---|---|---|---|
ClassificationResults(breaks:Array = null, minValue:Number, maxValue:Number)
Creates a new instance of the ClassificationResults class. | ClassificationResults | ||
getClassBreakByIndex(index:int):ClassBreakInfo
Gets a class break info by index. | ClassificationResults | ||
| count | property |
count:int [read-only] The number of class breaks in this collection.
public function get count():int| maximumValue | property |
maximumValue:Number [read-only] Maximum value in data classified.
public function get maximumValue():Number| minimumValue | property |
minimumValue:Number [read-only] Minimum value in data classified.
public function get minimumValue():Number| valueFormat | property |
valueFormat:ValueFormat
Format recommended for formatting a thematic value.
This format can be used for formatting value of class breaks.
It is usually specified with formatWithUnits=false mode.
public function get valueFormat():ValueFormat public function set valueFormat(value:ValueFormat):void| ClassificationResults | () | Constructor |
public function ClassificationResults(breaks:Array = null, minValue:Number, maxValue:Number)Creates a new instance of the ClassificationResults class.
Parametersbreaks:Array (default = null) — Array of class breaks.
| |
minValue:Number (default = NaN) — Min data value.
| |
maxValue:Number (default = NaN) — Max data value.
|
| getClassBreakByIndex | () | method |
public function getClassBreakByIndex(index:int):ClassBreakInfoGets a class break info by index.
Parameters
index:int — Zero-based index.
|
ClassBreakInfo — The required class break info.
|