function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arthropod Systematics & amp; Phylogeny', 12], ['Bernsteinforschungen', 1], ['European Journal of Taxonomy', 2], ['Far Eastern Entomologist', 4], ['Journal of Hymenoptera Research', 11], ['Journal of Natural History', 2], ['Journal of Threatened Taxa', 1], ['Journal of the Proceedings of the Linnean Society, Zoology', 2], ['Linzer biologische Beiträge', 17], ['ZooKeys', 43], ['Zoological Systematics', 2], ['Zootaxa', 78] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=175)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);