Packagecom.yahoo.astra.fl.charts
Interfacepublic interface IDataTipRenderer extends flash.events.IEventDispatcher
ImplementorsDataTipRenderer

A renderer for a mouse-over datatip on a chart.

Important: Must be a subclass of DisplayObject

See also

flash.display.DisplayObject


Public Properties
 PropertyDefined by
  data : Object
The data for the item that this data tip represents.
IDataTipRenderer
  text : String
The text that appears in the data tip's label.
IDataTipRenderer
Property detail
dataproperty
data:Object  [read-write]

The data for the item that this data tip represents. Custom implementations of IDataTipRenderer may use this property to render additional information for the user.

Implementation
    public function get data():Object
    public function set data(value:Object):void
textproperty 
text:String  [read-write]

The text that appears in the data tip's label.

Implementation
    public function get text():String
    public function set text(value:String):void