function drawUniqueContributorsChart()

in content/assets/js/dev-community.js [66:92]


function drawUniqueContributorsChart() {
  var data = google.visualization.arrayToDataTable([
      ['Release', 'Unique Contributors', 'Unique Committers', {'role': 'annotation'}],
      ['0.24', 40, 14, ''],
      ['0.25', 37, 13, ''],
      ['0.26', 42, 14, ''],
      ['0.27', 51, 13, ''],
      ['0.28', 41, 10, ''],
      ['1.0-rc2', 92, 17, '']
  ]);

  // Set chart options.
  var options = {
    'title': 'Number of Contributors and Committers per Release',
    'width': 600,
    'height': 400,
    'isStacked': true,
    'groupWidth': '90%',
    'legend': { position: 'top', maxLines: 30 }
  };

  // Instantiate and draw our chart, passing in some options.
  var chart = new google.visualization.ColumnChart(
      document.getElementById('number_of_contributors_and_committers_per_release'));
  chart.draw(data, options);
  drawMonthlyChart()
}