function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Ahmad, Jalil & Joshi, Rahul & Singh, Navneet', 6], ['Boisduval, J. B. A. Docteur', 1], ['BÄ…kowski, Marek', 1], ['Fabricius, Johann Christian', 2], ['Gorbunov, O. G.', 1], ['Gorbunov, Oleg G. & Krupitsky, Anatoly V. & Marusov, Anatoly A.', 1], ['Schmidt, B. Christian', 2], ['Westwood, J. O.', 1], ['Zahiri, Reza & Tarmann, Gerhard & Efetov, Konstantin A.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=16)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);