function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 211], ['Acarological Studies', 9], ['Biodiversity Data Journal', 2], ['International journal of acarology', 2], ['Journal of Natural History', 25], ['Persian Journal of Acarology', 145], ['Proceedings of the Entomological Society of Washington', 3], ['Proceedings of the Japanese Society of Systematic Zoology', 4], ['Species Diversity', 5], ['Systematic & Applied Acarology', 2], ['Systematic & applied acarology', 2], ['The American Midland Naturalist', 5], ['Veröffentlichungen des Instituts für Meeresforschung Bremerhaven', 4], ['ZooKeys', 32], ['Zootaxa', 222], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=680)', 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);