function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales des Sciences Naturelles, Zoologie, Série 2', 1], ['BIOGEOGRAPHIA-Lav. Soc. ital. Biogeoqr. N. S.', 12], ['Biodiversity Data Journal', 8], ['Caucasiana', 2], ['Edinburgh encyclopaedia, conducted by David Brewster', 1], ['Far Eastern Entomologist', 4], ['International Journal of Myriapodology', 12], ['Journal of Natural History', 1], ['Revue suisse de Zoologie', 1], ['Species Diversity', 1], ['Transactions of the Linnean Society of London', 1], ['VERLAG VON LEOPOLD VOSS, BUCHHAENDLER D. K. ACADEHIE D. WISSENSCHAFTEN ZU ST. PETERSBURG', 2], ['ZooKeys', 9], ['Zoosystema', 3], ['Zootaxa', 35] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=93)', 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);