--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.10.3/build/series-range/series-range-debug.js Tue Jul 16 14:29:46 2013 +0200
@@ -0,0 +1,99 @@
+/*
+YUI 3.10.3 (build 2fb5187)
+Copyright 2013 Yahoo! Inc. All rights reserved.
+Licensed under the BSD License.
+http://yuilibrary.com/license/
+*/
+
+YUI.add('series-range', function (Y, NAME) {
+
+/**
+ * Provides functionality for creating a range series.
+ *
+ * @module charts
+ * @submodule series-range
+ */
+
+/**
+ * An abstract class for creating range series instances.
+ * RangeSeries is used by the following classes:
+ * <ul>
+ * <li>{{#crossLink "CandlestickSeries"}}{{/crossLink}}</li>
+ * <li>{{#crossLink "OHLCSeries"}}{{/crossLink}}</li>
+ * </ul>
+ *
+ * @class RangeSeries
+ * @extends CartesianSeries
+ * @constructor
+ * @param {Object} config (optional) Configuration parameters.
+ * @submodule series-range
+ */
+function RangeSeries()
+{
+ RangeSeries.superclass.constructor.apply(this, arguments);
+}
+
+RangeSeries.NAME = "rangeSeries";
+
+RangeSeries.ATTRS = {
+ /**
+ * Read-only attribute indicating the type of series.
+ *
+ * @attribute type
+ * @type String
+ * @default range
+ */
+ type: {
+ value: "range"
+ },
+
+ /**
+ * Values to be used for open, high, low and close keys.
+ *
+ * @attribute ohlc
+ * @type Object
+ */
+ ohlckeys: {
+ valueFn: function() {
+ return {
+ open: "open",
+ high: "high",
+ low: "low",
+ close: "close"
+ };
+ }
+ }
+};
+
+Y.extend(RangeSeries, Y.CartesianSeries, {
+ /**
+ * Draws the series.
+ *
+ * @method drawSeries
+ * @protected
+ */
+ drawSeries: function()
+ {
+ var xcoords = this.get("xcoords"),
+ ycoords = this.get("ycoords"),
+ styles = this.get("styles"),
+ padding = styles.padding,
+ len = xcoords.length,
+ dataWidth = this.get("width") - (padding.left + padding.right),
+ keys = this.get("ohlckeys"),
+ opencoords = ycoords[keys.open],
+ highcoords = ycoords[keys.high],
+ lowcoords = ycoords[keys.low],
+ closecoords = ycoords[keys.close],
+ width = dataWidth/len,
+ halfwidth = width/2;
+ this._drawMarkers(xcoords, opencoords, highcoords, lowcoords, closecoords, len, width, halfwidth, styles);
+ }
+});
+
+Y.RangeSeries = RangeSeries;
+
+
+
+
+}, '3.10.3', {"requires": ["series-cartesian"]});