Skip to content

Commit

Permalink
Fix issue#2
Browse files Browse the repository at this point in the history
  • Loading branch information
peterrcook committed Nov 25, 2013
1 parent f0b7cb6 commit 3c2bdfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/radialBarChart.js
Expand Up @@ -40,8 +40,8 @@ function radialBarChart() {
function initChart(container) {
var g = d3.select(container)
.append('svg')
.style('width', 2 * barHeight + margin.left + margin.right)
.style('height', 2 * barHeight + margin.top + margin.bottom)
.style('width', 2 * barHeight + margin.left + margin.right + 'px')
.style('height', 2 * barHeight + margin.top + margin.bottom + 'px')
.append('g')
.classed('radial-barchart', true)
.attr('transform', svgTranslate(margin.left + barHeight, margin.top + barHeight));
Expand Down

0 comments on commit 3c2bdfd

Please sign in to comment.