function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Invertebrates', 2], ['American Museum Novitates', 4], ['Annales du Musee Royale de l\'Afrique Centrale, Zoologie, Serie 8', 4], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 3], ['Annals of the Natal Museum', 2], ['Eos, Madrid', 4], ['Eos, Revista Española de Entomología', 3], ['Journal of Arachnology', 3], ['Mitteilungen aus dem Zoologischen Museum in Berlin', 2], ['Revue de Zoologie Africaine', 3], ['Senckenbergiana Biologica', 3], ['ZooKeys', 11], ['Zoologia', 3], ['Zoologischer Anzeiger', 17], ['Zootaxa', 27], ['Other (9)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=101)', 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);