Skip to content

Commit

Permalink
Merge pull request #186 from Gizra/185
Browse files Browse the repository at this point in the history
Add fill style to canvas and background SVG elements.
  • Loading branch information
Carlos Mantilla committed Jan 29, 2014
2 parents 300660d + 2ac2dd5 commit 9bcc472
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/js/cdl.js
Expand Up @@ -64,6 +64,7 @@
.attr('id', 'chart')
.attr('width', '100%')
.attr('height', '100%')
.style('fill', 'transparent')
.on('dblclick.zoom', null)
.on('touch', null)
.on('touchstart', null)
Expand All @@ -76,6 +77,7 @@
.attr('id', 'backgroud')
.attr('width', width)
.attr('height', height)
.style('fill', 'transparent')
.on('zoom', zoom);

// System.
Expand Down

0 comments on commit 9bcc472

Please sign in to comment.