function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Fuangarworn, Marut & Lekprayoon, Chariya', 2], ['LIU, DONG & YI, TIAN-CI & XU, YUN & ZHANG, ZHI-QIANG', 13], ['Liu, Dong & Wu, Donghui & Chen, Jun', 12], ['Niedbala, Wojciech', 2], ['Niedbała, W.', 3], ['Niedbała, Wojciech', 14], ['Niedbała, Wojciech & Colloff, Matthew J.', 1], ['Niedbała, Wojciech & Ermilov, Sergey G.', 7], ['Niedbała, Wojciech & Liu, Dong', 1], ['Niedbała, Wojciech & Starý, Josef', 3], ['Niedbała, Wojciech & Szywilewska-Szczykutowicz, Anetta', 2], ['Oliveira, Anibal R. & Argolo, Poliane S. & De, Gilberto J.', 1], ['Revelo-Tobar, Harol', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=62)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);