function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen der Königlichen Akademie der Wissenschaften zu Berlin', 1], ['Baudouin, Imprimeur du Corps législatif et de l\'Institut national, place du Carrousel, N °. 662, an 6', 1], ['Biodiversity Data Journal', 1], ['Bulletin of the United States National Museum', 1], ['Geodiversitas', 8], ['Papers of the Department of Marine Biology, Carnegie Institute, Washington', 4], ['Proceedings of the Essex Institute (Communications)', 1], ['Records of the Western Australian Museum', 2], ['Scientific Report Great Barrier Reef Expedition 1928 - 29', 3], ['Zootaxa', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=32)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);