function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Zoologica Academiae Scientiarum Hungaricae', 10], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 1], ['Annalen des Naturhistorischen Museums in Wien, Serie B, Botanik und Zoologie', 2], ['Antarctic Research Series', 1], ['British Antarctic Survey Bulletin', 1], ['Bulletin of the Raffles Museum', 1], ['Contributions to Zoology', 2], ['Dobutsugaku Zasshi', 2], ['Journal of Natural History', 2], ['Lethaia', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 5], ['Records of the Zoological Survey of India', 3], ['Science Press', 2], ['Taylor & Francis', 3], ['ZooKeys', 4], ['Other (13)', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=54)', 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);