function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Amurian Zoological Journal', 1], ['Biodiversity Data Journal', 8], ['Bulletin des Sciences Naturelles et de GĂ©ologie', 1], ['Check List', 10], ['DĂ©terville', 1], ['G. E. Beer', 21], ['Garnery', 2], ['Laurentius Salvius', 20], ['Revue suisse de Zoologie', 2], ['Transactions of the Linnean Society of London', 2], ['Treuttel', 2], ['Utrecht', 3], ['Zoosystema', 23], ['Zoosystematics and Evolution', 3], ['Zootaxa', 9], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=115)', 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);