function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Buletinul ºtiinþific al Muzeului Naþional de Etnografie ºi Istorie Naturalã a Moldovei', 2], ['Frontiers in Zoology', 6], ['Fundam. appl. Nematol.', 1], ['Journal of Agricultural Research', 1], ['Journal of Natural History', 1], ['Journal of Nematology', 10], ['Nematologica', 1], ['Nematology', 1], ['Transactions of the Linnean Society of London', 1], ['W. Engelmann', 2], ['Zoological Journal of the Linnean Society', 8], ['Zoological Science', 5], ['Zoological Studies', 2], ['Zoologischer Anzeiger', 1], ['Zootaxa', 30] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=72)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);