function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de Paléontologie', 1], ['Benham and Leeve', 4], ['Biodiversity Data Journal', 2], ['Bulletin of the National Museum of Nature and Science, Series A (Zoology)', 3], ['European Journal of Taxonomy', 17], ['Geodiversitas', 4], ['Journal of Natural History', 5], ['Raffles Bulletin of Zoology', 34], ['Records of the Australian Museum', 4], ['Species Diversity', 3], ['ZooKeys', 2], ['Zoological Journal of the Linnean Society', 5], ['Zoosystema', 25], ['Zoosystematics and Evolution', 9], ['Zootaxa', 198], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=324)', 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);