function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Polonica', 16], ['Anthropological Science', 7], ['Bulletin des Sciences par la Société Philomathique de Paris', 7], ['C. F. Voss', 6], ['Geodiversitas', 65], ['Handbook of the Mammals of the World – Volume 2 Hoofed Mammals', 209], ['Laurentius Salvius', 29], ['Mammal Species of the World (1 st Edition)', 171], ['Mammal Species of the World (2 nd Edition)', 184], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 285], ['Mammalian Species', 13], ['Neues Jahrbuch für Geologie und Paläontologie-Abhandlungen', 10], ['Weygand', 6], ['Zoosystema', 11], ['Zootaxa', 12], ['Other (31)', 61] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1092)', 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);