function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 1889], ['Bulletin of the National Science Museum, Series A (Zoology)', 44], ['European Journal of Taxonomy', 184], ['Journal of Natural History', 368], ['Laurentius Salvius', 35], ['Papéis Avulsos de Zoologia', 13], ['Proceedings of the Japanese Society of Systematic Zoology', 12], ['Records of the Australian Museum', 143], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 159], ['Species Diversity', 63], ['ZooKeys', 843], ['Zoological Journal of the Linnean Society', 196], ['Zoosystema', 188], ['Zootaxa', 5186], ['Öfversigt af Konglelige Vetenskaps-Akademiens Förhandlingar', 17], ['Other (91)', 247] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=9587)', 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);