function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Bayerische Staatssammlung für Paläontologie und historische Geologie', 2], ['Bulletin of the American Museum of Natural History', 2], ['Bulletin of the Florida State Museum, Biological Sciences', 4], ['Fossil Imprint', 3], ['Geodiversitas', 42], ['Handbook of the Mammals of the World – Volume 2 Hoofed Mammals', 8], ['Journal of Vertebrate Paleontology', 2], ['Laurentius Salvius', 4], ['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', 30], ['Neues Jahrbuch für Geologie und Paläontologie-Abhandlungen', 3], ['The University of Wyoming', 3], ['Zoosystema', 2], ['Other (10)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=137)', 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);