vis.add(pv.Bar)
    .data([67, 82, 70, ...])
    .left(function() this.index * 20)
    .bottom(0)
    .height(function(d) d * 20)
    .width(20)
    ...