function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Polonica', 1], ['Bulletin of the American Museum of Natural History', 2], ['Bulletin of the Florida State Museum, Biological Sciences', 1], ['Contributions from the Museum of Paleontology, The University of Michigan', 2], ['European Journal of Taxonomy', 2], ['Geodiversitas', 2], ['Handbook of the Mammals of the World – Volume 4 Sea Mammals', 6], ['Journal of Vertebrate Paleontology', 6], ['Laurentius Salvius', 2], ['Mammal Species of the World (1 st Edition)', 11], ['Mammal Species of the World (2 nd Edition)', 10], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 13], ['Neues Jahrbuch für Geologie und Paläontologie, Abhandlungen', 2], ['Palaeontologia Electronica', 3], ['Zootaxa', 2], ['Other (9)', 9] ]); 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);