function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Baudouin, Imprimeur du Corps législatif et de l\'Institut national, place du Carrousel, N °. 662, an 6', 1], ['Biodiversity Data Journal', 2], ['Deterville', 1], ['Fragmenta Faunistica', 20], ['Havniae & Lipsiae', 1], ['Journal of Natural History', 4], ['Journal of Threatened Taxa', 12], ['Proceedings of the Japanese Society of Systematic Zoology', 18], ['Raffles Bulletin of Zoology', 1], ['Revue Suisse de Zoologie', 2], ['Systematics and Biodiversity', 3], ['ZooKeys', 23], ['Zoological Journal of the Linnean Society', 3], ['Zoosystema', 8], ['Zootaxa', 157], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=258)', 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);