function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien', 6], ['Annales de la Société Royale Zoologique de Belgique', 1], ['Archiv für Naturgeschichte', 1], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['European Journal of Taxonomy', 6], ['Ezhegodnik Zoologicheskogo Muzeya Imperatorskogo Akademii Nauk', 2], ['Geological Survey of Canada Contributions to Canadian Palaeontology', 2], ['Laurentius Salvius', 5], ['Nouveaux Mémoires de la Société Impériale des Naturalistes de Moscou', 2], ['Nouvelles Archives du Muséum d\'Histoire Naturelle, Paris, Série 2', 6], ['Novi Commentarii Academiae Scientiarum Imperialis Petropolitanae', 2], ['Philosophical Transactions of the Royal Society, B: Biological Sciences', 3], ['The Pacific', 3], ['Turkish Journal of Zoology', 7], ['Zootaxa', 26], ['Other (16)', 16] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=89)', 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);