updated by GasGit automation
This commit is contained in:
parent
bc287fb676
commit
77f16cec30
1 changed files with 2 additions and 2 deletions
|
@ -36,8 +36,8 @@
|
||||||
dataTable.addRows(data.map(function(d) {
|
dataTable.addRows(data.map(function(d) {
|
||||||
return [d[0].toString(), d[1].toString() , parseInt (d[2],10) , d[0] + ">" + d[1] + "(" + d[2] + ")"];
|
return [d[0].toString(), d[1].toString() , parseInt (d[2],10) , d[0] + ">" + d[1] + "(" + d[2] + ")"];
|
||||||
}).filter(function(d){
|
}).filter(function(d){
|
||||||
// get rid of blank rows
|
// get rid of blank rows (0 volumes will not be plotted either)
|
||||||
return d[0] && d[1] && !isNaN(d[2]);
|
return d[0] && d[1] && !isNaN(d[2]) && d[2];
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue