graph.js revision 106cc795c2891f2d2d142772cadefbcb5975bcfa
{
this.createInstance(this._id, "Graph", [Y.JSON.stringify(this.get("seriesCollection")), this.get("handleEventListening")]);
}
/**
* Reference to the layout strategy used for displaying child items.
*/
{
value:"LayerStack",
//needs a setter
{
}
},
{
{
},
{
}
},
{
},
getter: function()
{
return this._handleEventListening;
},
{
this._handleEventListening = val;
return val;
}
}
};
/**
* Need to refactor to augment Attribute
*/
{
GUID:"yuigraph",
/**
* @private
* Indicates whether the Graph will act as a delegate for
* mouse events.
*/
_handleEventListening: false,
/**
* Reference to corresponding Actionscript class.
*/
AS_CLASS: "Graph",
_seriesCollection:null,
/**
* Converts references of AS class wrappers to string references to used with
* ExternalInterface.
*/
_convertReferences: function(collection)
{
var i,
arr = [];
for(i = 0; i < len; ++i)
{
series = collection[i];
}
return arr;
}
});