RatioBarChart: Remove unnecessary check
It's already (better) handled by BarChart
This commit is contained in:
parent
dcb921c5f5
commit
2570a07d57
@ -5,14 +5,13 @@ var BarChart = require('../components/BarChart')
|
|||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: "RatioBarChart",
|
displayName: "RatioBarChart",
|
||||||
render: function() {
|
render: function() {
|
||||||
/* Expects 'this.props.numerator' and '.denominator' to be in the form:
|
/* Expects 'this.props.numerator' and 'this.props.denominator' to be in
|
||||||
|
* the form:
|
||||||
* [
|
* [
|
||||||
* {'Label': 'foo', 'Value': 1.4},
|
* {'Label': 'foo', 'Value': 1.4},
|
||||||
* {'Label': 'bar', 'Value': 8}
|
* {'Label': 'bar', 'Value': 8}
|
||||||
* ]
|
* ]
|
||||||
*/
|
*/
|
||||||
if (this.props.denominator.length < 1)
|
|
||||||
return (<div />);
|
|
||||||
|
|
||||||
var numeratorMap = {};
|
var numeratorMap = {};
|
||||||
for (var i = 0; i < this.props.numerator.length; i++) {
|
for (var i = 0; i < this.props.numerator.length; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user