function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. Constable', 7], ['Algemeene Konst- en Letter-Bode', 4], ['Asiatic Researches', 10], ['Biodiversity Data Journal', 9], ['Bulletin de la Société Philomathique de Paris, Série 7', 4], ['Laurentius Salvius', 5], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 5], ['Proceedings of the Zoological Society of London, B', 6], ['Raffles Bulletin of Zoology', 10], ['Travaux du Museum d\'Histoire Naturelle \' Grigore Antipa\'', 5], ['Turkish Journal of Zoology', 6], ['Zoological Journal of the Linnean Society', 6], ['Zoological Systematics', 7], ['Zoosystematics and Evolution', 15], ['Zootaxa', 130], ['Other (69)', 106] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=335)', 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);