function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Polonica', 3], ['Biodiversity Data Journal', 96], ['European Journal of Taxonomy', 4], ['Journal of Natural History', 57], ['Laurentius Salvius', 11], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 3], ['The European Zoological Journal', 1], ['Videnskabelige Meddelelser frå Dansk Naturhistorisk Forening', 1], ['ZooKeys', 61], ['Zoological Journal of the Linnean Society', 13], ['Zootaxa', 214] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=464)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);