export function enterHorizontal(props) {
  this.append('rect')
    .attr('x', function(d, i, j) {
      return bar0(props.yValue, props.yScale, props.offset, d, i, j);
    })