diff -r d334a616c023 -r e16a97fb364a src/cm/media/js/lib/yui/yui3-3.15.0/build/series-areaspline/series-areaspline-debug.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/media/js/lib/yui/yui3-3.15.0/build/series-areaspline/series-areaspline-debug.js Mon Mar 10 15:19:48 2014 +0100 @@ -0,0 +1,63 @@ +YUI.add('series-areaspline', function (Y, NAME) { + +/** + * Provides functionality for creating an areaspline series. + * + * @module charts + * @submodule series-areaspline + */ +/** + * AreaSplineSeries renders an area graph with data points connected by a curve. + * + * @class AreaSplineSeries + * @extends AreaSeries + * @uses CurveUtil + * @constructor + * @param {Object} config (optional) Configuration parameters. + * @submodule series-areaspline + */ +Y.AreaSplineSeries = Y.Base.create("areaSplineSeries", Y.AreaSeries, [Y.CurveUtil], { + /** + * @protected + * + * Draws the series. + * + * @method drawSeries + */ + drawSeries: function() + { + this.drawAreaSpline(); + } +}, { + ATTRS : { + /** + * Read-only attribute indicating the type of series. + * + * @attribute type + * @type String + * @default areaSpline + */ + type: { + value:"areaSpline" + } + + /** + * Style properties used for drawing area fills. This attribute is inherited from `Renderer`. Below are the default values: + * + *