linegraph.js revision b8536d4d0d76ef6fa6779f434d574d0474baa0c8
/* The LineGraph is used in the chart visualization package
* @module axis
*
* Note: LineGraph is a temporary class that has been created for the purposes of observing and testing the current state of the underlying flash chart rendering engine. This file
* will be replaced in future iterations and its api will vary significantly.
*/
/**
* The LineGraph module allows creating single line cartesian graphs.
* @module linegraph
* @title Line Graph
* @namespace YAHOO.widget
*/
/**
* Creates the LineGraph instance and contains initialization data
*
* @class LineGraph
* @constructor
* @param {Object} config Configuration parameters for the Axis.
*/
{
}
{
value:null
},
{
value:null
},
xkey:
{
value:null
},
ykey:
{
value:null
}
};
{
/**
* Reference to corresponding Actionscript class.
*/
AS_CLASS: "LineSeries",
GUID: "yuilinechart",
/**
* @private
* Called by the class instance containing the application swf after the swf
* has been initialized.
*
* @method _init
* @param swfowner {Object} Class instance with direct access to the application swf.
*/
initializer: function(cfg)
{
this.createInstance(this._id,
"LineSeries",
[
{
}
]);
this._updateStyles();
}
});