From 9ed3c1e6ed99c56d77fd5d90ff42f9acfe7ace68 Mon Sep 17 00:00:00 2001
From: Pjotr Prins
Date: Fri, 17 Jun 2016 06:15:59 +0000
Subject: Removed trailing spaces in .py and .js files
---
.../packages/jqplot/plugins/jqplot.ohlcRenderer.js | 100 ++++++++++-----------
1 file changed, 50 insertions(+), 50 deletions(-)
(limited to 'wqflask/wqflask/static/packages/jqplot/plugins/jqplot.ohlcRenderer.js')
diff --git a/wqflask/wqflask/static/packages/jqplot/plugins/jqplot.ohlcRenderer.js b/wqflask/wqflask/static/packages/jqplot/plugins/jqplot.ohlcRenderer.js
index 2f143f1b..0fd1de36 100755
--- a/wqflask/wqflask/static/packages/jqplot/plugins/jqplot.ohlcRenderer.js
+++ b/wqflask/wqflask/static/packages/jqplot/plugins/jqplot.ohlcRenderer.js
@@ -6,13 +6,13 @@
* Revision: 1121
*
* Copyright (c) 2009-2012 Chris Leonello
- * jqPlot is currently available for use in all personal or commercial projects
- * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL
- * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can
- * choose the license that best suits your project and use it accordingly.
+ * jqPlot is currently available for use in all personal or commercial projects
+ * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL
+ * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can
+ * choose the license that best suits your project and use it accordingly.
*
- * Although not required, the author would appreciate an email letting him
- * know of any substantial use of jqPlot. You can reach the author at:
+ * Although not required, the author would appreciate an email letting him
+ * know of any substantial use of jqPlot. You can reach the author at:
* chris at jqplot dot com or see http://www.jqplot.com/info.php .
*
* If you are feeling kind and generous, consider supporting the project by
@@ -26,43 +26,43 @@
* http://hexmen.com/js/sprintf.js
* The author (Ash Searle) has placed this code in the public domain:
* "This code is unrestricted: you are free to use it however you like."
- *
+ *
*/
(function($) {
/**
* Class: $.jqplot.OHLCRenderer
* jqPlot Plugin to draw Open Hi Low Close, Candlestick and Hi Low Close charts.
- *
- * To use this plugin, include the renderer js file in
+ *
+ * To use this plugin, include the renderer js file in
* your source:
- *
+ *
* >
- *
+ *
* You will most likely want to use a date axis renderer
* for the x axis also, so include the date axis render js file also:
- *
+ *
* >
- *
+ *
* Then you set the renderer in the series options on your plot:
- *
+ *
* > series: [{renderer:$.jqplot.OHLCRenderer}]
- *
+ *
* For OHLC and candlestick charts, data should be specified
* like so:
- *
+ *
* > dat = [['07/06/2009',138.7,139.68,135.18,135.4], ['06/29/2009',143.46,144.66,139.79,140.02], ...]
- *
+ *
* If the data array has only 4 values per point instead of 5,
* the renderer will create a Hi Low Close chart instead. In that case,
* data should be supplied like:
- *
+ *
* > dat = [['07/06/2009',139.68,135.18,135.4], ['06/29/2009',144.66,139.79,140.02], ...]
- *
+ *
* To generate a candlestick chart instead of an OHLC chart,
* set the "candlestick" option to true:
- *
+ *
* > series: [{renderer:$.jqplot.OHLCRenderer, rendererOptions:{candleStick:true}}],
- *
+ *
*/
$.jqplot.OHLCRenderer = function(){
// subclass line renderer to make use of some of it's methods.
@@ -73,7 +73,7 @@
this.candleStick = false;
// prop: tickLength
// length of the line in pixels indicating open and close price.
- // Default will auto calculate based on plot width and
+ // Default will auto calculate based on plot width and
// number of points displayed.
this.tickLength = 'auto';
// prop: bodyWidth
@@ -115,10 +115,10 @@
this._tickLength;
this._bodyWidth;
};
-
+
$.jqplot.OHLCRenderer.prototype = new $.jqplot.LineRenderer();
$.jqplot.OHLCRenderer.prototype.constructor = $.jqplot.OHLCRenderer;
-
+
// called with scope of series.
$.jqplot.OHLCRenderer.prototype.init = function(options) {
options = options || {};
@@ -135,28 +135,28 @@
if (d[0].length < 5) {
this.renderer.hlc = true;
- for (var j=0; j db.max || db.max == null) {
db.max = d[j][1];
- }
+ }
}
}
else {
- for (var j=0; j db.max || db.max == null) {
db.max = d[j][2];
- }
+ }
}
}
-
+
};
-
+
// called within scope of series.
$.jqplot.OHLCRenderer.prototype.draw = function(ctx, gd, options) {
var d = this.data;
@@ -181,7 +181,7 @@
if (this.show) {
var x, open, hi, low, close;
// need to get widths based on number of points shown,
- // not on total number of points. Use the results
+ // not on total number of points. Use the results
// to speed up drawing in next step.
for (var i=0; i