function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. Koenig', 2], ['American Museum Novitates', 1], ['Bulletin of the American Museum of Natural History', 1], ['Bulletin of the Florida Museum of Natural History', 1], ['Check List', 2], ['Courier ForschungsInstitut Senckenberg', 1], ['Geodiversitas', 14], ['Herpetozoa', 2], ['Ichthyology & Herpetology', 1], ['Laurentius Salvius', 12], ['Megataxa', 67], ['Panckoucke', 5], ['ZooKeys', 4], ['Zoological Journal of the Linnean Society', 8], ['Zootaxa', 26], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=152)', 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);