function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Ichthyologica et Piscatoria', 1], ['American Museum Novitates', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 2], ['Bulletin of the United States National Museum', 1], ['Check List', 5], ['F. Schoell', 1], ['Japanese Journal of Ichthyology', 3], ['Natuurkunde Tijdschrift voor Nederlandsche-Indiƫ', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Proceedings of the Biological Society of Washington', 2], ['Proceedings of the United States National Museum, 3', 4], ['Raffles Bulletin of Zoology', 3], ['Report of the United States Commissioner of Fish and Fisheries', 2], ['ZooKeys', 4], ['Zootaxa', 5], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=44)', 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);