function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abramov, Alexei V. & Puzachenko, Andrey Yu.', 1], ['Arribas, Alfonso & Garrido, Guiomar', 1], ['Don E. Wilson & Russell A. Mittermeier', 3], ['Fourvel, Jean-Baptiste & Fosse, Philippe & Fernandez, Philippe', 1], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 2], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 2], ['W. Christopher Wozencraft', 2], ['Wilson, Don E. & Reeder, DeeAnn', 12] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=24)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);