function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des kaiserlich-königlichen naturhistorischen Hofmuseums', 2], ['Annales du Muséum national d\'Histoire naturelle', 1], ['Archiv für Naturgeschichte', 2], ['Benham and Leeve', 1], ['Geodiversitas', 2], ['Journal of Natural History', 2], ['Ohmu: occasional papers of Zoological Laboratory, Faculty of Agriculture, Kyushu University', 1], ['Species Diversity', 1], ['ZooKeys', 1], ['Zoosystema', 6], ['Zootaxa', 216] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=235)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);