BubbleChart.prototype.start = function() {
      return (this.force = d3.layout
        .force()
        .nodes(this.nodes)
        .size([this.width, this.height]));