function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Erichson, Wilhelm Ferdinand', 1], ['Ghahari, Hassan & Mazur, Slawomir & Ostovan, Hadi', 1], ['Mazur, S. & A. V & A. V', 1], ['Motschulsky, Victor de', 8], ['Penati, Fabio', 3], ['Peschel, RĂ¼diger', 2], ['Sharp, David', 1], ['Tishechkin, A. K. & Zinchenko, V. K. & Sergeev, M. E.', 2], ['Webster, Reginald P. & Makepeace, Scott & DeMerchant, Ian', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=22)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);