function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen aus dem Gebiete die Naturwissenschaftlichen Vereins zu Hamburg, NF', 20], ['Archiv für Molluskenkunde', 3], ['European Journal of Taxonomy', 2], ['Geodiversitas', 1], ['Johan Christi. Trappii', 2], ['Nautilus', 1], ['Quarterly Journal of the Geological Society, London', 1], ['Spixiana', 1], ['Transactions of the geological society of London, 2', 1], ['U. S. Geological Survey, Professional Paper', 1], ['Zoosystema', 2], ['Zootaxa', 39] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=74)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);