Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(pc): prevent err
Browse files Browse the repository at this point in the history
removes console errors
Closes 526
  • Loading branch information
Daniel Stern committed Mar 10, 2015
1 parent b311bcc commit f14c453
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/scripts/projects/parallel-coordinates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ function ParallelCoordinates(data,options) {
});


if (xscale('DNA methylation') && xscale('Clinical')) {


svg.append('g')
.attr('height',100)
.attr("transform",function(d){
Expand All @@ -208,6 +211,8 @@ function ParallelCoordinates(data,options) {
.attr('height',1)
.attr('y',15)
.attr('x',xscale('Clinical') +padding.left+margins.left);

}

var axis=column
.filter(function(col){
Expand Down

0 comments on commit f14c453

Please sign in to comment.