Packagecom.esri.ags.renderers
Classpublic class ClassBreakInfo

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

Note: Renderer related classes were added in version 1.2.

Default MXML Propertysymbol

See also

ClassBreaksRenderer
Live sample - Using ClassBreakInfo


Public Properties
 PropertyDefined by
  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
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 — The minimum value of the range to symbolize.
 
maxValue:Number — The maximum value of the range to symbolize.