Pacote | mx.charts |
Classe | public class ChartItem |
Herança | ChartItem EventDispatcher Object |
Subclasses | AreaSeriesItem, BarSeriesItem, BubbleSeriesItem, ColumnSeriesItem, HLOCSeriesItem, LineSeriesItem, PieSeriesItem, PlotSeriesItem |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Mais exemplos
Propriedade | Definido por | ||
---|---|---|---|
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
currentState : String
Defines the appearance of the ChartItem. | ChartItem | ||
element : IChartElement
The series or element that owns the ChartItem. | ChartItem | ||
index : int
The index of the data from the series' data provider
that the ChartItem represents. | ChartItem | ||
item : Object
The item from the series' data provider that the ChartItem represents. | ChartItem | ||
itemRenderer : IFlexDisplayObject
The instance of the chart's itemRenderer
that represents this ChartItem. | ChartItem |
Método | Definido por | ||
---|---|---|---|
Constructor. | ChartItem | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Returns a copy of this ChartItem. | ChartItem | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Constante | Definido por | ||
---|---|---|---|
DISABLED : String = "disabled" [estático]
Value that indicates the ChartItem appears disabled and cannot be selected. | ChartItem | ||
FOCUSED : String = "focused" [estático]
Value that indicates the ChartItem has focus but does not appear to be selected. | ChartItem | ||
FOCUSEDSELECTED : String = "focusedSelected" [estático]
Value that indicates the ChartItem appears to have focus and appears to be selected. | ChartItem | ||
NONE : String = "none" [estático]
Value that indicates the ChartItem does not appear to be selected, does not have focus, and is not being rolled over. | ChartItem | ||
ROLLOVER : String = "rollOver" [estático]
Value that indicates the ChartItem appears as if the mouse was over it. | ChartItem | ||
SELECTED : String = "selected" [estático]
Value that indicates the ChartItem appears selected but does not have focus. | ChartItem |
currentState | propriedade |
currentState:String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Defines the appearance of the ChartItem.
The currentState
property can be set to none
, rollOver
,
selected
, disabled
, focusSelected
, and focused
.
Implementação
public function get currentState():String
public function set currentState(value:String):void
element | propriedade |
public var element:IChartElement
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The series or element that owns the ChartItem.
index | propriedade |
public var index:int
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The index of the data from the series' data provider that the ChartItem represents.
item | propriedade |
public var item:Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The item from the series' data provider that the ChartItem represents.
itemRenderer | propriedade |
public var itemRenderer:IFlexDisplayObject
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The instance of the chart's itemRenderer that represents this ChartItem.
ChartItem | () | Construtor |
public function ChartItem(element:IChartElement = null, item:Object = null, index:uint = 0)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Parâmetroselement:IChartElement (default = null ) — The series or element to which the ChartItem belongs.
| |
item:Object (default = null ) — The item from the series' data provider
that the ChartItem represents.
| |
index:uint (default = 0 ) — The index of the data from the series' data provider
that the ChartItem represents.
|
clone | () | método |
DISABLED | Constante |
public static const DISABLED:String = "disabled"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Value that indicates the ChartItem appears disabled and cannot be selected.
FOCUSED | Constante |
public static const FOCUSED:String = "focused"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Value that indicates the ChartItem has focus but does not appear to be selected.
FOCUSEDSELECTED | Constante |
public static const FOCUSEDSELECTED:String = "focusedSelected"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Value that indicates the ChartItem appears to have focus and appears to be selected.
NONE | Constante |
public static const NONE:String = "none"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Value that indicates the ChartItem does not appear to be selected, does not have focus, and is not being rolled over.
ROLLOVER | Constante |
public static const ROLLOVER:String = "rollOver"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Value that indicates the ChartItem appears as if the mouse was over it.
SELECTED | Constante |
public static const SELECTED:String = "selected"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Value that indicates the ChartItem appears selected but does not have focus.
Wed Jun 13 2018, 11:10 AM Z