function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Akademiia Nauk SSSR, Trudy P. P. Shirshov Instytut Okeanologii', 1], ['Antarctic Research Series', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 1], ['Discovery Reports', 1], ['European Journal of Taxonomy', 1], ['Nat. Can.', 1], ['Trans. N. Z. Inst.', 1], ['Voprosy Ikhtiologii', 1], ['Zootaxa', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=9)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);