function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen des Naturwissenschaftlichen Vereins', 1], ['Biodiversity Data Journal', 10], ['Buletinul ºtiinþific al Muzeului Naþional de Etnografie ºi Istorie Naturalã a Moldovei', 1], ['European Journal of Taxonomy', 65], ['Journal of Natural History', 14], ['Marine biodiversity', 1], ['Nematology', 3], ['Pakistan Journal of Nematology', 8], ['Proceedings of the Japanese Society of Systematic Zoology', 2], ['Species Diversity', 6], ['Transactions of the Linnean Society of London', 2], ['Vidensk. Medd. Dansk Nat. Foren. Kjöbenhavn', 3], ['Zoological Journal of the Linnean Society', 18], ['Zoologischen Anzeiger', 2], ['Zootaxa', 389], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=530)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);