function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Ichthyologica et Piscatoria', 1], ['Biodiversity Data Journal', 4], ['Bulletin of the United States National Museum', 2], ['European Journal of Taxonomy', 5], ['Journal of Natural History', 2], ['Mémoires Institut d’Egypt', 2], ['Pacific Science', 4], ['Proceedings of the Biological Society of Washington', 2], ['Proceedings of the United States National Museum, 3', 3], ['Proceedings of the Zoological Society of London, B', 2], ['Records of the Zoological Survey of India', 2], ['Smithsonian Contributions to Zoology', 4], ['Uo [Japanese Society of Ichthyology]', 3], ['Zoological Studies', 5], ['Zootaxa', 53], ['Other (23)', 23] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=117)', 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);