function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Entomologique de France, Séries 1 - 6', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Annual report of the Agricultural Experiment Station', 2], ['Can Ent', 2], ['Entomologist\'s monthly magazine', 3], ['Insecta Mundi', 5], ['Insects of Guam II', 4], ['Nicolai', 2], ['Stettin Ent Ztg', 3], ['Transactions and proceedings of the New Zealand Institute', 5], ['U S Dep Agr Rep', 3], ['United States Department of Agriculture Technical Series Bulletin', 2], ['ZooKeys', 2], ['Zoosystema', 3], ['Zootaxa', 11], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=57)', 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);