StackedLineSeries.js revision a75ebc38c1de401b679953a9b87bd323f0f48d02
3649N/A/**
3649N/A * StackedLineSeries creates line graphs in which the different series are stacked along a value axis
3649N/A * to indicate their contribution to a cumulative total.
3649N/A *
5564N/A * @module charts
5624N/A * @class StackedLineSeries
3649N/A * @constructor
3649N/A * @extends LineSeries
3649N/A * @uses StackingUtil
5624N/A */
3649N/AY.StackedLineSeries = Y.Base.create("stackedLineSeries", Y.LineSeries, [Y.StackingUtil], {
3649N/A /**
3649N/A * @protected
3649N/A *
3649N/A * Calculates the coordinates for the series. Overrides base implementation.
3649N/A *
3649N/A * @method setAreaData
3649N/A */
3649N/A setAreaData: function()
3649N/A {
3649N/A Y.StackedLineSeries.superclass.setAreaData.apply(this);
3649N/A this._stackCoordinates.apply(this);
3649N/A }
3649N/A}, {
3649N/A ATTRS: {
3649N/A /**
3649N/A * Read-only attribute indicating the type of series.
3649N/A *
3649N/A * @attribute type
3649N/A * @type String
3649N/A * @default stackedLine
3649N/A */
3649N/A type: {
5624N/A value:"stackedLine"
3649N/A }
3649N/A }
3649N/A});
3649N/A