function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Alcheringa: An Australasian Journal of Palaeontology', 1], ['Bulletin of the American Museum of Natural History', 8], ['Handbook of the Mammals of the World – Volume 5 Monotremes and Marsupials', 60], ['Magasin Encyclopédique, ou Journal des Sciences, des Lettres et des Arts', 1], ['Mammal Species of the World (1 st Edition)', 74], ['Mammal Species of the World (2 nd Edition)', 66], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 103], ['Mammalian Species', 3], ['Megataxa', 13], ['Palaeontologia Electronica', 1], ['Records of the Australian Museum', 22], ['Zoosystema', 11], ['Zootaxa', 25] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=388)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);