function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. Strahan, and T. Cadell | W. Creech', 1], ['BMC Zoology', 1], ['Belin', 1], ['Biodiversity Data Journal', 1], ['Bulletin of the American Museum of Natural History', 5], ['Check List', 3], ['Handbook of the Mammals of the World – Volume 1 Carnivores', 7], ['Laurentius Salvius', 19], ['Mammal Species of the World (1 st Edition)', 4], ['Mammal Species of the World (2 nd Edition)', 8], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 37], ['Records of the Australian Museum', 2], ['Sitzungsberichte der Gesellschaft Naturforschender Freunde zu Berlin', 2], ['Weygand', 5], ['Zootaxa', 6], ['Other (10)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=112)', 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);