function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Archiv für Anatomie, Physiologie und Wissenschaftliche Medicin', 1], ['European Journal of Taxonomy', 28], ['Journal of Natural History', 3], ['Marine biodiversity', 1], ['Meiofauna Marina', 3], ['Proceedings of the Biological Society of Washington', 1], ['Proceedings of the Japanese Society of Systematic Zoology', 1], ['Species Diversity', 2], ['Systematics and Biodiversity', 2], ['ZooKeys', 38], ['Zoodiversity', 5], ['Zoological Journal of the Linnean Society', 4], ['Zoological Science', 2], ['Zoosystema', 5], ['Zootaxa', 246], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=343)', 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);