vis.add(pv.Bar)
  .data([1, 1.2, 1.7, 1.5, .7])
  .visible(true)
  .left(function() this.index * 25)
  .bottom(0)
  .height(function(d) d * 80)
  .width(20)
  .fillStyle("blue")
  .strokeStyle("black")
  .lineWidth(1.5);