function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 12], ['Bulletin of the American Museum of Natural History', 23], ['Geodiversitas', 1], ['Handbook of the Mammals of the World – Volume 6 Lagomorphs and Rodents I', 96], ['Journal of mammalogy', 1], ['Mammal Species of the World (1 st Edition)', 71], ['Mammal Species of the World (2 nd Edition)', 106], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 2', 127], ['Mammalian Species', 7], ['Mastozoología Neotropical', 1], ['Revista del Museo La Plata, Paleontología', 1], ['ZooKeys', 7], ['Zoological Journal of the Linnean Society', 4], ['Zootaxa', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=465)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);