function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Academia Brasileira de Ciências', 1], ['Acarologia', 1], ['Acta Geologica Sinica, English Edition', 1], ['Annotationes Zoologicae Japonenses', 19], ['Arkiv för Zoologi', 1], ['Bollettino dei Musei di Zoologia ed Anatomia Comparata della R. Università di Torino', 3], ['Bulletin of the British Museum (Natural History). Entomology', 3], ['Bulletin of the United States National Museum', 1], ['Insects of Guam II', 4], ['Invertebrate Systematics', 2], ['Laurentius Salvius', 4], ['Proceedings of the United States National Museum, 3', 2], ['Sociobiology', 2], ['ZooKeys', 14], ['Zootaxa', 139], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=203)', 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);