function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Polonica', 13], ['Acta Palaeontologica Romaniae', 38], ['European Journal of Taxonomy', 724], ['Geodiversitas', 321], ['Journal of Natural History', 118], ['Munis Entomology & Zoology', 32], ['Proceedings of the Japanese Society of Systematic Zoology', 19], ['Records of the Australian Museum', 26], ['Reports of Science Research Voyage of H. M. S. Challenger. Zoology', 136], ['Species Diversity', 35], ['Zitteliana', 96], ['ZooKeys', 38], ['Zoological Journal of the Linnean Society', 119], ['Zoosystema', 18], ['Zootaxa', 1687], ['Other (37)', 114] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=3534)', 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);