Packagecom.esri.ags.renderers.supportClasses
Classpublic class ClassBreakInfo
InheritanceClassBreakInfo Inheritance Object

Since : ArcGIS API for Flex 1.2

The class break object to use in a ClassBreaksRenderer to symbolize a range of values with a specific symbol.

Default MXML Propertysymbol

See also

com.esri.ags.renderers.ClassBreaksRenderer
Live sample - Using ClassBreakInfo


Public Properties
 PropertyDefined By
  description : String
Description for the info.
ClassBreakInfo
  label : String
Label for the info.
ClassBreakInfo
  maxValue : Number = Infinity
The maximum value for this class break.
ClassBreakInfo
  minValue : Number = -Infinity
The minimum value for this class break.
ClassBreakInfo
  symbol : Symbol
The symbol to use for this class break (a.k.a range).
ClassBreakInfo
Public Methods
 MethodDefined By
  
ClassBreakInfo(symbol:Symbol = null, minValue:Number, maxValue:Number)
Creates a new ClassBreakInfo object.
ClassBreakInfo
Property Detail
descriptionproperty
public var description:String

Description for the info.

labelproperty 
public var label:String

Label for the info.

maxValueproperty 
public var maxValue:Number = Infinity

The maximum value for this class break.

minValueproperty 
public var minValue:Number = -Infinity

The minimum value for this class break.

symbolproperty 
public var symbol:Symbol

The symbol to use for this class break (a.k.a range).

Constructor Detail
ClassBreakInfo()Constructor
public function ClassBreakInfo(symbol:Symbol = null, minValue:Number, maxValue:Number)

Creates a new ClassBreakInfo object.

Parameters
symbol:Symbol (default = null) — The graphic symbol.
 
minValue:Number (default = NaN) — The minimum value of the range to symbolize.
 
maxValue:Number (default = NaN) — The maximum value of the range to symbolize.