function drawChartSpecimensByEpithet() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['Bairdiidae', 1241], ['Candonidae', 756], ['Cushmanideidae', 121], ['Cyprididae', 3234], ['Cytherideidae', 500], ['Cytheruridae', 228], ['Darwinulidae', 377], ['Entocytheridae', 294], ['Healdiidae', 95], ['Hemicytheridae', 144], ['Limnocytheridae', 128], ['Loxoconchidae', 163], ['Macrocyprididae', 2991], ['Neocytherideidae', 2759], ['Trachyleberididae', 282], ['Other (27)', 536] ]); var chartOptions = { pieHole: 0, title: 'Specimens by Family (n=13849)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByEpithet', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivSpecimensByEpithet')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartSpecimensByEpithet);