function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de l’Université de Lyon', 1], ['Biodiversity Data Journal', 3], ['Bulletin of the National Science Museum, Series A (Zoology)', 6], ['European Journal of Taxonomy', 2], ['Journal of Natural History', 1], ['Mémoires du Muséum national d\'Histoire naturelle', 153], ['Papéis Avulsos de Zoologia', 3], ['Proceedings of the Japanese Society of Systematic Zoology', 1], ['Proceedings of the United States National Museum', 1], ['Records of the Australian Museum', 2], ['ZooKeys', 6], ['Zoological Journal of the Linnean Society', 26], ['Zoosystema', 2], ['Zootaxa', 239] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=446)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);