function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales Societe Entomologique France', 2], ['Biodiversity Data Journal', 2], ['Bulletin of the National Science Museum, Series A (Zoology)', 7], ['Gurney & Jackson', 1], ['Insecta Mundi', 1], ['Miscellanea Zoologica Sumatrana', 7], ['Mémoires du Muséum national d\'Histoire naturelle', 4], ['Odonatologica', 5], ['Proceedings of the Royal Entomological Society of London', 2], ['Systematic Entomology', 69], ['Treubia', 4], ['Wiener Entomologische Monatschrift', 2], ['ZooKeys', 3], ['Zoological Systematics', 4], ['Zootaxa', 57], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=173)', 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);