function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 2], ['Bulletin of the American Museum of Natural History', 1], ['Check List', 1], ['Fossil Imprint', 1], ['Geodiversitas', 3], ['Handbook of the Mammals of the World – Volume 8 Insectivores, Sloths and Colugos', 32], ['Laurentius Salvius', 2], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 57], ['Memoir (Geological Survey of Wyoming)', 1], ['Palaeobiodiversity and Palaeoenvironments', 1], ['Palaeontologia Electronica', 2], ['Papers on Paleontology, University of Michigan', 1], ['Weigand', 1], ['Weygand', 2], ['Zootaxa', 16], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=124)', 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);