function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 1], ['Annals and Magazine of Natural History', 1], ['Biodiversity Data Journal', 28], ['Buletinul ºtiinþific al Muzeului Naþional de Etnografie ºi Istorie Naturalã a Moldovei', 1], ['European Journal of Taxonomy', 33], ['Journal of Natural History', 12], ['Journal of Threatened Taxa', 1], ['Linzer biologische Beiträge', 1], ['Pakistan Journal of Nematology', 7], ['Species Diversity', 4], ['Transactions of the Linnean Society of London', 1], ['Zoologischen Anzeiger', 1], ['Zoologischer Anzeiger', 4], ['Zootaxa', 177] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=272)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);