function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 1], ['Bulletin of the American Museum of Natural History', 5], ['Government Printer', 1], ['Handbook of the Mammals of the World – Volume 5 Monotremes and Marsupials', 1], ['Longman, Brown', 1], ['Mammal Species of the World (1 st Edition)', 2], ['Mammal Species of the World (2 nd Edition)', 2], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 4], ['Mémoires du Muséum National d’Histoire Naturelle, Série A, Zoologie', 6], ['Proceedings of the Zoological Acclimatisation Society of Victoria', 1], ['Proceedings of the Zoological Society of London, B', 1], ['Sumptibus C. Salfeld', 1], ['Transactions of the Zoological Society of London', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=27)', 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);