function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arch. Zool. Anat. Fisiol., Genova, 2', 1], ['Australian zoologist', 3], ['Bulletin Oceanogr. Inst. Taiwan', 3], ['Cybium', 1], ['Déterville', 1], ['European Journal of Taxonomy', 6], ['Fauna Bermudensis', 1], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 2], ['Illust. Sydney News', 1], ['Isis von Oken', 1], ['Journal of Systematic Palaeontology', 12], ['Occasional Papers of the California Academy of Sciences', 6], ['Spolia Zeylanica [Ceylon Journal Sci], Section B-Zoo', 2], ['Zoosystematics and Evolution', 2], ['Zootaxa', 19], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=66)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);