function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Ichthyologica et Piscatoria', 2], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Bulletin of Marine Science', 3], ['Bulletin of the Bingham Oceanographic Collection Yale University', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 1], ['Cah. Indo-Pacif.', 1], ['Copeia', 2], ['E. J. Brill', 1], ['European Journal of Taxonomy', 4], ['Galathea Report', 7], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 2], ['Journal and Proceedings of the Asiatic Society of Bengal', 1], ['Proceedings of the United States National Museum, 3', 2], ['Report on the Scientific Results of the Voyage of H. M. S. “ Challenger ” during the Years 1873 - 76 under the Command of Captai', 2], ['Zootaxa', 40], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=74)', 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);