function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. M', 3], ['Broad, Gavin R.', 54], ['Dal Pos, Davide & Heilman, Victoria & Welter-Schultes, Francisco', 8], ['Ghahari, H. & Jussila, R.', 1], ['Ghahari, H. & Jussila, R. & D, Cyclolabus', 1], ['Ghahari, H. & Schwarz, M.', 1], ['Horstmann, K.', 1], ['Kolarov, J.', 4], ['Madl, Michael & S, Osprynchotus & H, Afrobystra', 1], ['Riedel & PĂ©nigot & Schwarz & Diller & Johansson & Japoshvili, G.', 6], ['Riedel, M.', 29], ['Riedel, Matthias', 8], ['Riedel, Matthias & Diller, Erich & Japoshvili, George', 5], ['Schwarz, Martin & Holy, Kamil', 2], ['Varga, Oleksandr & Riedel, Matthias & Diller, Erich', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=137)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);