function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 5], ['Archiv für Fischereiwissenschaft', 12], ['Australian zoologist', 4], ['Bulletin of the American Museum of Natural History', 4], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 8], ['Copeia', 7], ['Cybium', 10], ['European Journal of Taxonomy', 32], ['Japanese Journal of Ichthyology', 6], ['Journal of Marine Research', 4], ['Journal of the Shimonoseki College of Fisheries', 6], ['Laurentius Salvius', 11], ['Veit', 5], ['Zoological Journal of the Linnean Society', 18], ['Zootaxa', 355], ['Other (56)', 78] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=565)', 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);