function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 8], ['C. Sepp', 1], ['Check List', 2], ['Gabriel Nicolaus Raspe', 2], ['Gebauer', 1], ['Histoire de l\'Académie Royale des Sciences, avec les Mémoires de Mathématique et de Physique', 1], ['Journal of Natural History', 1], ['Laurentii Salvii', 1], ['Laurentius Salvius', 31], ['R. and J. E. Taylor', 2], ['Records of the Australian Museum', 1], ['Revue suisse de Zoologie', 1], ['Transactions of the Linnean Society of London', 2], ['Zoosystema', 5], ['Zootaxa', 14], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=75)', 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);