function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Jouault, Corentin & Wei, Mei-cai & Niu, Geng-yun & Nel, André', 3], ['Liston, A. D. & Knight, G. T. & Heibo, E. & Bland, K. P.', 3], ['Liston, Andrew', 1], ['Liston, Andrew D.', 6], ['Liston, Andrew D. & Knight, Guy T. & Sheppard, David A.', 50], ['Schedl, W.', 17], ['Schedl, Wolfgang', 19], ['Shinohara, Akihiko', 25], ['Shinohara, Akihiko & Choi, Jin-Kyung & Lee, Jong-Wook', 2], ['Shinohara, Akihiko & Kakuda, Tsuneo & Wei, Meicai', 3], ['Shinohara, Akihiko & Kiyoshi, Takuya & Wei, Meicai', 2], ['Shinohara, Akihiko & Kramp, Katja & Taeger, Andreas', 82], ['Shinohara, Akihiko & Taeger, Andreas', 2], ['Shinohara, Akihiko & Wei, Mei-Cai', 14], ['Shinohara, Akihiko & Yuan, Decheng', 2], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=237)', 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);