function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Al-Kandari, Manal & Polikarpov, Igor & Nithyanandan, Manickam', 1], ['Kim, Kyung-Won & Zhang, Xin & Choi, Jae-Hong & Kim, Jun', 2], ['Kristine N. White & Traudl Krapp-Schickel', 1], ['Myers, A. A.', 1], ['Thacker, Dimple & Patel, Krupal & Myers, Alan', 1], ['White, Kristine N.', 13], ['White, Kristine N. & Reimer, James Davis', 3], ['White, Kristine N. & Thomas, James Darwin', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=23)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);