function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Invertebrates', 30], ['African invertebrates', 7], ['Archiv für Molluskenkunde', 2], ['Basteria', 3], ['Beaufortia', 2], ['Molluscan Research', 4], ['Mémoires du Muséum National d’Histoire Naturelle', 17], ['Mémoires du Muséum national d\'Histoire naturelle', 34], ['PaleoBios', 5], ['Records of the Australian Museum', 38], ['Sarsia', 3], ['Zitteliana', 2], ['Zoologische Verhandelingen, Leiden', 6], ['Zoosystema', 58], ['Zootaxa', 9], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=225)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);