function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Romaniae', 38], ['European Journal of Taxonomy', 659], ['Geodiversitas', 274], ['Journal of Natural History', 100], ['Journal of Species Research', 11], ['Munis Entomology & Zoology', 20], ['Proceedings of the Japanese Society of Systematic Zoology', 16], ['Records of the Australian Museum', 20], ['Reports of Science Research Voyage of H. M. S. Challenger. Zoology', 128], ['Species Diversity', 32], ['Zitteliana', 10], ['ZooKeys', 33], ['Zoological Journal of the Linnean Society', 84], ['Zoosystema', 18], ['Zootaxa', 1353], ['Other (28)', 91] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=2887)', 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);