function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Invertebrates', 8], ['Archiv für Molluskenkunde', 3], ['Bocagiana, Funchal', 4], ['Bulletin of Geosciences', 1], ['Heineck et Faber', 1], ['Journal of Natural History', 2], ['Linzer biologische Beiträge', 14], ['Palaeontographica, Abteilung A-Palaozoologie-Stratigraphie', 1], ['Proceedings of the Boston Society of Natural History', 1], ['Proceedings of the United States National Museum, 3', 1], ['Proceedings of the Zoological Society of London', 5], ['Quarterly Journal of the Geological Society, London', 1], ['ZooKeys', 18], ['Zootaxa', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=62)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);