function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen der Akademie der Wissenschaften der München Mathematik-Physikalische Klasse', 1], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 2], ['Australian zoologist', 3], ['Biodiversity Data Journal', 9], ['Bulletin Sea Fish. Res. Sta. Israel', 1], ['Bulletin of the United States National Museum', 1], ['Check List', 4], ['Cybium', 7], ['European Journal of Taxonomy', 4], ['Indo-Pacific Fishes', 3], ['Journal of Natural History', 4], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the United States National Museum, 3', 4], ['Verslagen en Mededeelingen der Koninklijke Akademie van Wetenschappen. Afdeeling Natuurkunde', 5], ['Zootaxa', 52], ['Other (16)', 16] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=118)', 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);