function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Aston, Paul', 1], ['Bousquet, Yves', 1], ['Boyd, Olivia F. & Erwin, Terry L.', 1], ['Felix, Ron F. F. L. & Farkač, Jan & Suleiman, Ahmed Saeed', 1], ['Guéorguiev, B.', 1], ['Hristovski, Slavčo & Guéorguiev, Borislav', 4], ['Kesdek, M.', 2], ['Kostova, Rumyana & Gueorguiev, Borislav', 4], ['Larochelle & Larivière, Marie-Claude & Larochelle & Larivière', 1], ['Liebherr, James K.', 6], ['Martinez, Claudia', 1], ['Wrase, DW', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=24)', 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);