function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Akademiia Nauk SSSR, Trudy P. P. Shirshov Instytut Okeanologii', 4], ['Australian zoologist', 3], ['Biodiversity Data Journal', 11], ['Bulletin of the United States Fish Commission', 6], ['European Journal of Taxonomy', 27], ['F. G. Levrault', 7], ['Indo-Pacific Fishes', 4], ['Journal of Systematic Palaeontology', 5], ['Natuurkunde Tijdschrift voor Nederlandsche-Indiƫ', 6], ['Privately published', 4], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 4], ['Proceedings of the Linnean Society of New South Wales', 4], ['Proceedings of the United States National Museum, 3', 6], ['Proceedings of the Zoological Society of London, B', 4], ['Zootaxa', 80], ['Other (58)', 78] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=253)', 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);