function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 16], ['Annali del Museo Civico di Storia Naturale \' Giacomo Doria\'', 16], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Baltic Journal of Coleopterology', 5], ['Berliner Entomologische Zeitschrift', 1], ['Entomo Helvetica', 9], ['Japanese Journal of Systematic Entomology', 4], ['Linzer biologische Beiträge', 1], ['Palaeoentomology', 2], ['Rev Ent Soc Fr Ent (Caen)', 1], ['Stamperia e Calcografia Vico Fredi', 1], ['ZooKeys', 1], ['Zootaxa', 32] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=90)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);