function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 3], ['Annals of the Transvaal Museum', 2], ['Archives du Museum National d\'Histoire Naturelle, 6', 3], ['Asiatic Researches', 2], ['Bijdragen tot de Dierkunde', 2], ['Bulletin de la Société Zoologique de France', 4], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 2], ['Bulletin of the American Museum of Natural History', 2], ['Check List', 6], ['Neotropical Ichthyology', 4], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Raffles Bulletin of Zoology', 6], ['Revue Zoologique Africaine', 3], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 3], ['Zootaxa', 20], ['Other (32)', 37] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=102)', 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);