function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 6], ['Bulletin of the Florida Museum of Natural History', 1], ['Check List', 12], ['Deterville', 1], ['Déterville', 1], ['Laurentius Salvius', 11], ['Nouveau dictionnaire d\'histoire naturelle [ed. 2]', 2], ['Papéis Avulsos de Zoologia', 2], ['Sumptibus C. Salfeld', 2], ['Treuttel', 2], ['Utrecht', 2], ['Zoological Journal of the Linnean Society', 3], ['Zoosystema', 17], ['Zoosystematics and Evolution', 2], ['Zootaxa', 13], ['Other (12)', 12] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=89)', 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);