function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 6], ['Enayatnia, Masoumeh & Rakhshani, Ehsan & Kroupa, Alexander S.', 4], ['Jarvis, Charlie', 1], ['John M. Leavengood, Jr. & Waichert, Cecilia & Rodriguez, Juanita', 1], ['Loktionov, V. M.', 1], ['Loktionov, Valery M.', 10], ['Schmid, C.', 1], ['Shimizu, Akira', 2], ['Shimizu, Akira & Lelej, Arkady S. & Loktionov, Valery M.', 5], ['Verheyde, Fons & Jacobs, JEffrEY & Dekoninck, WOUTEr', 1], ['Waichert, Cecilia & Fernandez, Fernando', 1], ['Waichert, Cecilia & Rodriguez, Juanita & Von Dohlen, Carol D.', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=36)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);