function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 3], ['Annual Report of the Missouri State Board of Agriculture', 2], ['Biodiversity Data Journal', 101], ['Boll Lab Ent Agrar F Silvestri', 1], ['Fauna of New Zealand', 1], ['Insecta Mundi', 2], ['Insects of Guam II', 4], ['Journal of Natural History', 3], ['Journal of Systematic Palaeontology', 3], ['Journal of Threatened Taxa', 2], ['Linzer biologische Beiträge', 4], ['Proceedings of the Entomological Society of Washington', 3], ['Proceedings of the Hawaiian Entomological Society', 3], ['ZooKeys', 5], ['Zootaxa', 144], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=288)', 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);