function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Hajdu, Eduardo & Desqueyroux-Faúndez, Ruth', 5], ['Kelly, Michelle & Goudie, Lisa', 2], ['Kelly, Michelle & Sim-Smith, Carina & Stone, Robert', 19], ['Lehnert, Helmut & Stone, Robert & Heimler, Wolfgang', 2], ['Mothes, Beatriz & Campos, Maurício & Eckert, Rafael', 4], ['Parker-Nance, Shirley & Hilliar, Storm & Waterworth, Samantha', 6], ['Payne, Robyn & Samaai, Toufiek & Kelly, Michelle', 2], ['Samaai, Toufiek & Gibbons, Mark J. & Kelly, Michelle', 42], ['Samaai, Toufiek & Govender, Vasha & Kelly, Michelle', 5], ['Samaai, Toufiek & Janson, Liesl & Kelly, Michelle', 4], ['Samaai, Toufiek & Kelly, Michelle & Ngwakum, Benedicta', 12], ['Samaai, Toufiek & Keyzers, Robert & Davies-Coleman, Michael', 3], ['Van Soest, Rob W. M.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=107)', 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);