function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 26], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Biodiversity Data Journal', 4], ['Canadian entomologist', 1], ['Entomologische Berichten', 4], ['Entomologist\'s monthly magazine', 3], ['Insects of Guam II', 3], ['Linzer biologische Beiträge', 8], ['Pacific insects', 4], ['Proc Linn Soc N S W', 1], ['Proceedings of the Hawaiian Entomological Society', 2], ['Raffles Bulletin of Zoology', 3], ['Zoosystema', 5], ['Zootaxa', 45] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=110)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);