function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A Synonymic Catalogue of Neuroptera Odonata, or Dragonflies. With an Appendix of fossil species', 57], ['Annales Societe Entomologique France', 28], ['Australian Journal of Entomology', 8], ['Baldwin and Cradock', 4], ['Biodiversity Data Journal', 8], ['Bulletin de l\'Academie royale des sciences, des lettres et des beaux-arts de Belgique Serie 2', 4], ['IDF-Report', 7], ['Mémoires de la Société Royale des Sciences de Liége', 5], ['Occasional Papers of the Museum of Zoology, University of Michigan', 10], ['Proceedings of the Royal Entomological Society of London', 7], ['Systematic Entomology', 12], ['Transactions of the Entomological Society of London', 7], ['Wiener Entomologische Monatschrift', 7], ['Zool. Med. Leiden', 9], ['Zootaxa', 59], ['Other (31)', 50] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=282)', 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);