function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Societe Entomologique de Belgique', 3], ['Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances', 1], ['Annales de la Société Entomologique de France', 1], ['Berliner Entomologische Zeitschrift', 3], ['Biodiversity Data Journal', 1], ['Histoire Physique, Naturelle et Politique de Madagascar.', 2], ['Sitzungsberichte der Koenigliche Akademie der Wissenschaften, Mathematisch-Naturwissenschaftliche Classe', 1], ['Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien', 4], ['ZooKeys', 2], ['Zoological Journal of the Linnean Society', 1], ['Zoosystema', 1], ['Zootaxa', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=21)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);