function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Polonica', 11], ['Biodiversity Data Journal', 228], ['Bulletin of the Biological Society of Washington', 6], ['European Journal of Taxonomy', 41], ['Geodiversitas', 6], ['Journal of Natural History', 74], ['Journal of Systematic Palaeontology', 11], ['Laurentius Salvius', 26], ['Papéis Avulsos de Zoologia', 9], ['Proceedings of the Japanese Society of Systematic Zoology', 6], ['Records of the Australian Museum', 6], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 18], ['ZooKeys', 65], ['Zoological Journal of the Linnean Society', 28], ['Zootaxa', 753], ['Other (15)', 24] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1312)', 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);