function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Biologica Universitatis Daugavpiliensis', 3], ['Amurian Zoological Journal', 3], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Bibliopolii Academici Novi', 1], ['Biodiversity Data Journal', 10], ['Entomologica Basiliensia', 11], ['Entomologist\'s monthly magazine', 2], ['Insecta Mundi', 17], ['Laurentius Salvius', 8], ['Linzer biologische Beiträge', 5], ['Proft et Storch', 4], ['The Coleopterists Bulletin', 11], ['The zoology of the voyage of H. M. S. Erebus & Terror, under the command of Captain Sir James Clark Ross, R. N., F. R. S., durin', 2], ['ZooKeys', 144], ['Zootaxa', 81], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=307)', 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);