projects
/
dygraphs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
680598a
)
Update dygraph.js
author
Wim Bruynooghe
<wim@wimme.net>
Fri, 31 May 2013 13:50:37 +0000
(16:50 +0300)
committer
Wim Bruynooghe
<wim@wimme.net>
Fri, 31 May 2013 13:50:37 +0000
(16:50 +0300)
dygraph.js
patch
|
blob
|
blame
|
history
diff --git
a/dygraph.js
b/dygraph.js
index
65eecb8
..
dfab016
100644
(file)
--- a/
dygraph.js
+++ b/
dygraph.js
@@
-2822,8
+2822,8
@@
Dygraph.prototype.extractSeries_ = function(rawData, i, logScale) {
// On the log scale, points less than zero do not exist.
// This will create a gap in the chart.
if (errorBars || customBars) {
+ // point.length is either 2 (errorBars) or 3 (customBars)
for (var k = 0; k < point.length; k++) {
- // point.length is either 2 (errorBars) or 3 (customBars)
if (point[k] <= 0) {
point = null;
break;