function drawChartTreatmentsPerSource() {
  var chartData = google.visualization.arrayToDataTable([
    ['Series', 'Number of Treatments'],
    ['Acta Universitatis Lundensis. Lunds Universitets Års-skrift', 1],
    ['Acta biologica Szegediensis, new', 1],
    ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1],
    ['British Antarctic Survey Bulletin', 1],
    ['British Museum (Natural History)', 1],
    ['Neues Jahrbuch für Geologie und Paläontologie - Abhandlungen', 1]
  ]);
  var chartOptions = {
    pieHole: 0,
    title: 'Treatments per Journal (n=6)',
    fontSize: 'automatic',
    doWeHaveDanglingCommas: 'No ;-)'
  };
  if (window.customizeGoogleChartOptions)
    customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 6, 0);
  var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource'));
  chart.draw(chartData, chartOptions);
}
google.load('visualization', '1', {'packages': ['corechart']});
google.setOnLoadCallback(drawChartTreatmentsPerSource);