function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin Inst. Fondam. Afr. Noire Sci. Nat., A', 1], ['European Journal of Taxonomy', 4], ['International Journal of Research Studies in Zoology', 1], ['Japanese Journal of Ichthyology', 1], ['Journal de Physique, de Chimie, d\'Histoire Naturelle et des Arts', 1], ['Neuchâtel', 1], ['Sanfilippo', 1], ['Zootaxa', 15] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=25)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);