function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arachnologische Mitteilungen', 2], ['Arthropoda Selecta', 2], ['Biodiversity Data Journal', 16], ['Bulletin de la Societe entomologique de France', 2], ['Bulletin of the National Museum of Nature and Science, Series A (Zoology)', 2], ['Bulletin of the National Science Museum, Series A (Zoology)', 8], ['Journal of Natural History', 6], ['Otago Museum Trust Board', 2], ['Records of the Australian Museum', 19], ['Species Diversity', 2], ['ZooKeys', 6], ['Zoological Science', 2], ['Zoosystema', 18], ['Zoosystematics and Evolution', 3], ['Zootaxa', 131], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=223)', 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);