function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Helvetica', 2], ['An. Mus. Nac. Chile, Zool.', 1], ['Archiv für Fischereiwissenschaft', 1], ['Biodiversity Data Journal', 1], ['Bulletin of the American Museum of Natural History', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 1], ['Copeia', 1], ['Cybium', 1], ['European Journal of Taxonomy', 13], ['Journal of Fish Biology', 4], ['Journal of the Washington Academy of Sciences', 1], ['Laurentius Salvius', 3], ['PaleoBios', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Zootaxa', 74], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=114)', 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);