function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the Queensland Museum', 1], ['Beiträge Zur Entomologie = Contributions to Entomology', 3], ['Biodiversity Data Journal', 2], ['Birkhaeuser Verlag', 2], ['Bulletin of the British Museum (Natural History). Entomology. Supplement', 1], ['Entomo Helvetica', 2], ['Far Eastern Entomologist', 2], ['Formosan Entomologist', 1], ['J. Murray', 1], ['Linzer biologische Beiträge', 10], ['List of the Specimens of Lepidopterous Insects in the Collection of the British Museum', 3], ['Records of the Zoological Survey of India', 217], ['Transactions of the Entomological Society of London', 2], ['ZooKeys', 72], ['Zootaxa', 352], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=674)', 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);