function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Liston, A. D. & Knight, G. T. & Heibo, E. & Bland, K. P.', 6], ['Liston, Andrew & Mutanen, Marko & Heidemaa, Mikk', 1], ['Liston, Andrew & Prous, Marko & Macek, Jan', 6], ['Liston, Andrew D.', 4], ['Liston, Andrew D. & Jacobs, Hans-Joachim & Prous, Marko', 1], ['Liston, Andrew D. & Knight, Guy T. & Sheppard, David A.', 32], ['Macek, Jan & Kula, Emanuel', 4], ['Park, Bia & Prous, Marko & Lee, Jong-Wook', 6], ['Prous, Marko & Heidemaa, Mikk', 1], ['Prous, Marko & Heidemaa, Mikk & Akihiko, Shinohara & Soon, Villu', 12], ['Prous, Marko & Heidemaa, Mikk & Soon, Villu', 9], ['Schedl, W.', 6], ['Schedl, Wolfgang', 6], ['Shinohara, Akihiko & Hara, Hideho & Prous, Marko', 6], ['Telfer, Angela C & Young, Monica R & Quinn, Jenna & Perez, Kate', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=102)', 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);