function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Austin, William C. & Ott, Bruce S. & Reiswig, Henry M.', 10], ['Dendy, Arthur & Ridley, S. O.', 1], ['Ekins, Merrick & Erpenbeck, Dirk & Wörheide, Gert', 14], ['Goodwin, Claire & Brickle, Paul', 1], ['Goodwin, Claire E. & Berman, Jade & Hendry, Katharine R.', 2], ['Göcke, Christian & Janussen, Dorte', 7], ['Kim, Young A & Sim, Chung Ja', 4], ['Morozov, Grigori & Sabirov, Rushan & Zimina, Olga', 2], ['Morozov, Grigori & Sabirov, Rushan Mirzovich', 1], ['Morrow, Christine & Boury-Esnault, Nicole', 1], ['Plotkin, Alexander & Boury-Esnault, Nicole', 2], ['Plotkin, Alexander S. & Janussen, Dorte', 8], ['Stephens, Jane', 1], ['Ugalde, Diana & Fernandez, Julio C. C. & Gómez, Patricia', 2], ['Van, Rob W. M.', 4], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=63)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);