function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Archives du Muséum d\'Histoire Naturelle de Lyon', 1], ['Biodiversity Data Journal', 5], ['Heineck et Faber', 23], ['L. Colas', 3], ['Laurentius Salvius', 53], ['Linzer biologische Beiträge', 2], ['Proceedings of the Boston Society of Natural History', 3], ['Proceedings of the Zoological Society of London', 17], ['Renaud', 4], ['Revue suisse de Zoologie', 94], ['The Bulletin of the Russian Far East Malacological Society', 3], ['ZooKeys', 49], ['Zoological Journal of the Linnean Society', 2], ['Zoosystema', 9], ['Zootaxa', 103], ['Other (13)', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=384)', 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);