BubbleChart.prototype.sort_desc = function(array) {
      array.sort(function(a, b) {
        if (a.value > b.value) {
          return 1;
        }