function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 11], ['Bulletin of the United States Fish Commission', 6], ['European Journal of Taxonomy', 4], ['F. G. Levrault', 7], ['Indo-Pacific Fishes', 4], ['Journal of Natural History', 2], ['Journal of Systematic Palaeontology', 2], ['Natuurkunde Tijdschrift voor Nederlandsche-Indiƫ', 6], ['Occasional Papers of the Bernice P. Bishop Museum', 2], ['Privately published', 4], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 4], ['Proceedings of the Linnean Society of New South Wales', 2], ['Proceedings of the United States National Museum, 3', 3], ['Publications of the Field Museum of Natural History, Zoƶlogical', 2], ['Zootaxa', 44], ['Other (38)', 43] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=146)', 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);