function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Anzeiger', 2], ['Archiv für Naturgeschichte', 3], ['Atlas', 1], ['Bulletin de la Société Zoologique de France', 1], ['Check List', 1], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 1], ['Department of Fisheries, N. S. W.', 1], ['Journal of the Bombay Natural History Society', 2], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 2], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 7], ['Nouvelles Archives du Muséum d\'Histoire Naturelle, Paris, Série 2', 3], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 1], ['Proceedings of the Linnean Society of New South Wales', 4], ['Proceedings of the Zoological Acclimatisation Society of Victoria', 2], ['Zootaxa', 21], ['Other (10)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=62)', 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);