return <BarChart data={data}
xTicks={xTicks}
xValues={xValues}
+ width={40 * data.length * 2 + 60}
height={HEIGHT}
+ barsWidth={40}
padding={[25, 30, 50, 30]}/>;
}
return <BarChart data={data}
xTicks={xTicks}
xValues={xValues}
+ width={40 * data.length * 2 + 60}
height={HEIGHT}
+ barsWidth={40}
padding={[25, 30, 50, 30]}/>;
}
let treemap = d3.layout.treemap()
.round(true)
.value(d => sizeScale(d.size))
+ .sort((a, b) => a.value - b.value)
.size([this.state.width, 360]);
let nodes = treemap
.nodes({ children: this.props.items })
overview.gate.ERROR=Failed
overview.gate.WARN=Warning
overview.gate.OK=Passed
+
+overview.domain.issues=Issues & Technical Debt
+overview.domain.coverage=Coverage & Tests
+overview.domain.duplications=Duplications
+overview.domain.size=Size & Complexity