function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arthropoda Selecta', 3], ['Biodiversity Data Journal', 22], ['Bulletin of the National Museum of Nature and Science, Series A (Zoology)', 2], ['Caucasian Entomological Bulletin', 1], ['European Journal of Taxonomy', 5], ['Evolutionary Systematics', 3], ['Far Eastern Entomologist', 1], ['Journal of Arachnology', 3], ['Mitt. Abt. Zool. Landesmus. Joanneum', 3], ['Peckhamia', 4], ['ZooKeys', 24], ['Zoological Systematics', 16], ['Zoology in the Middle East', 2], ['Zoosystema', 6], ['Zootaxa', 115], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=212)', 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);