projects
/
dygraphs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0192f26
)
BUGFIX: added missing spaces.
author
David Eberlein
<david.eberlein@ch.sauter-bc.com>
Tue, 16 Apr 2013 16:18:32 +0000
(18:18 +0200)
committer
David Eberlein
<david.eberlein@ch.sauter-bc.com>
Tue, 16 Apr 2013 16:18:32 +0000
(18:18 +0200)
dygraph.js
patch
|
blob
|
blame
|
history
diff --git
a/dygraph.js
b/dygraph.js
index
5fee847
..
bfdfc4d
100644
(file)
--- a/
dygraph.js
+++ b/
dygraph.js
@@
-2771,9
+2771,9
@@
Dygraph.prototype.extractSeries_ = function(rawData, i, logScale) {
}
}
// Fix null points to fit the display type standard.
- if(point === null && errorBars){
+ if(point === null && errorBars)
{
series.push([x, [null,null]]);
- }
else if(point === null && customBars)
{
+ }
else if(point === null && customBars)
{
series.push([x, [null,null,null]]);
} else {
series.push([x, point]);