function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 42], ['Annales zoologici', 3], ['Annals of the Entomological Society of America', 1], ['Bull. British Mus. nat. Hist., Zool. ser.', 11], ['Deutschlands Crustaceen, Arachniden und Myriopoden', 13], ['Genus', 7], ['Hornmilben (Oribatida) [Dahl, Tierwelt Deutschlands, Teil 76]', 10], ['International journal of acarology', 2], ['Journal of Natural History', 6], ['Linzer biologische Beiträge', 2], ['New Zealand journal of zoology', 3], ['Persian Journal of Acarology', 8], ['Zoologische Verhandelingen', 11], ['Zootaxa', 183], ['carolinea', 3], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=310)', 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);