function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 2], ['Bulletin of the Florida Museum of Natural History', 1], ['Check List', 8], ['Fossil Imprint', 1], ['Geodiversitas', 5], ['Handbook of the Mammals of the World – Volume 6 Lagomorphs and Rodents I', 64], ['Journal of Mammalogy', 1], ['Laurentius Salvius', 5], ['Mammal Species of the World (1 st Edition)', 54], ['Mammal Species of the World (2 nd Edition)', 66], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 209], ['Mammalian Species', 1], ['Neues Jahrbuch für Geologie und Paläontologie - Abhandlungen', 1], ['Zoosystema', 2], ['Zootaxa', 12], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=433)', 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);