| Package | com.asterisq.graph |
| Interface | public interface IGraphItem extends flash.events.IEventDispatcher |
| Subinterfaces | IEdge, INode |
| Property | Defined by | ||
|---|---|---|---|
| data : Object
The graph item's data.
| IGraphItem | ||
| id : String [read-only]
A permanent, unique identifier for this graph item.
| IGraphItem | ||
| Method | Defined by | ||
|---|---|---|---|
|
getDataProperty(propertyName:String):*
Fetches the value of a particular property of this graph item's data.
| IGraphItem | ||
|
setDataProperty(propertyName:String, value:*):void
Sets the value of a particular property of this graph item's data.
| IGraphItem | ||
| data | property |
data:Object [read-write]The graph item's data. Use this property to store any information associated with this item.
Implementation public function get data():Object
public function set data(value:Object):void
| id | property |
id:String [read-only]A permanent, unique identifier for this graph item.
Implementation public function get id():String
| getDataProperty | () | method |
public function getDataProperty(propertyName:String):*Fetches the value of a particular property of this graph item's data.
ParameterspropertyName:String |
* |
| setDataProperty | () | method |
public function setDataProperty(propertyName:String, value:*):voidSets the value of a particular property of this graph item's data.
ParameterspropertyName:String |
|
value:* |