function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Agassiz, Jean Louis Rodolphe', 1], ['Alexander, Timothy & Seehausen, Ole', 2], ['Arai, Hisao P. & Smith, John W.', 1], ['Artaev, Oleg & Ruchin, Alexander B.', 1], ['Baycelebi, Esra', 1], ['Bonnaterre, Joseph Pierre', 1], ['Chereshnev, Igor A. & Balushkin, A. V.', 1], ['Curtiss, A.', 1], ['Denys, Gael & Dettai, Agnès & Persat, H. & Hautecoeur, M.', 1], ['Dybowski, B. I.', 1], ['Kovalchuk, Oleksandr M. & Wilson, Mark V. H. & Grande, Terry', 6], ['Laan, Richard Van Der & Eschmeyer, William N. & Fricke, Ronald', 2], ['Linnaeus, Carolus', 10], ['Robert E. Schmidt & Robert A. Daniels', 9], ['Walbaum, J. J.', 2], ['Other (18)', 18] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=58)', 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);