function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien, Serie A Mineralogie und Petrographie Geologie und Palaeontologie Anthropologie un', 2], ['Biodiversity Data Journal', 29], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 156], ['European Journal of Taxonomy', 265], ['Journal of Natural History', 3], ['Papers in Palaeontology', 3], ['Papéis Avulsos de Zoologia', 3], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Raffles Bulletin of Zoology', 16], ['Revista Brasileira de Zoologia', 5], ['Species Diversity', 6], ['ZooKeys', 65], ['Zoological Journal of the Linnean Society', 12], ['Zoosystema', 5], ['Zootaxa', 625], ['Other (14)', 16] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1214)', 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);