function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales historico-naturales Musei nationalis hungarici', 9], ['Annals and Magazine of Natural History', 2], ['Biodiversity Data Journal', 6], ['Buletinul ºtiinþific al Muzeului Naþional de Etnografie ºi Istorie Naturalã a Moldovei', 1], ['Journal of Natural History', 7], ['Pakistan Journal of Nematology', 8], ['Proceedings of the Japanese Society of Systematic Zoology', 2], ['Proceedings of the Linnean Society of New South Wales', 1], ['Species Diversity', 6], ['Transactions of the Linnean Society of London', 1], ['ZooKeys', 5], ['Zootaxa', 114] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=162)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);