芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/lib/yuilib/3.17.2/series-marker-stacked/series-marker-stacked.js
/* YUI 3.17.2 (build 9c3c78e) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add('series-marker-stacked', function (Y, NAME) { /** * Provides functionality for creating a stacked marker series. * * @module charts * @submodule series-marker-stacked */ /** * StackedMarkerSeries plots markers with different series stacked along the value axis to indicate each * series' contribution to a cumulative total. * * @class StackedMarkerSeries * @constructor * @extends MarkerSeries * @uses StackingUtil * @param {Object} config (optional) Configuration parameters. * @submodule series-marker-stacked */ Y.StackedMarkerSeries = Y.Base.create("stackedMarkerSeries", Y.MarkerSeries, [Y.StackingUtil], { /** * @protected * * Calculates the coordinates for the series. Overrides base implementation. * * @method setAreaData */ setAreaData: function() { Y.StackedMarkerSeries.superclass.setAreaData.apply(this); this._stackCoordinates.apply(this); } }, { ATTRS: { /** * Read-only attribute indicating the type of series. * * @attribute type * @type String * @default stackedMarker */ type: { value:"stackedMarker" } } }); }, '3.17.2', {"requires": ["series-stacked", "series-marker"]});