JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://www.google.com/jsapi?.js"></script>
<div id="dashboard">
    <span style="font-size:14px;"><span style="color: rgb(204, 0, 0); "><span style="font-family: arial, helvetica, sans-serif; "><strong>Select a Program</strong></span></span></span>
    
    <div id="chooseprogram">
    </div>
    
    <p>    <span style="font-size:14px;"><span style="color: rgb(204, 0, 0); "><span style="font-family: arial, helvetica, sans-serif; "><strong>Staffing Trend</strong></span></span></span></p>
    <table><tbody><tr><td style="width: 700 px">
        <div id="staffingline" style="float: left;">
        </div>
        </td></tr></tbody></table>
    <p><span style="font-size:14px;"><span style="color: rgb(204, 0, 0); "><span style="font-family: arial, helvetica, sans-serif; "><strong>Staffing Data</strong></span></span></span></p>
    
    <div id="staffingtable" style="float: left;">
    </div>
</div>

JavaScript

function drawVisualization() {
    // Prepare the data
    var data = google.visualization.arrayToDataTable([
        ["Program Number","Year","Attorneys","Paralegals","Other Staff","Total Staff"],
        ["107000","2006",9,9,9,27],
        ["107000","2007",9,10,12,31],
        ["107000","2008",11,9,11,31],
        ["107000","2009",10,9,12,31],
        ["107000","2010",9,9,12,30],
        ["107000","2011",9,8,13,30],
        ["120000","2006",28,11,16,55],
        ["120000","2007",27,21,7,55],
        ["120000","2008",31,21,6,58],
        ["120000","2009",31,20,6,57],
        ["120000","2010",32,21,6,59],
        ["120000","2011",30,17,6,53],
        ["122007","2006",7,2,5,14],
        ["122007","2007",9,3,6,18],
        ["122007","2008",7,2,4,13],
        ["122007","2009",7,2,4,13],
        ["122007","2010",11,2,6,19],
        ["122007","2011",10,3,4,17],
        ["122087","2006",5,6,3,14],
        ["122087","2007",4,4,3,11],
        ["122087","2008",4,4,3,11],
        ["122087","2009",4,5,3,12],
        ["122087","2010",5,5,5,15],
        ["122087","2011",16,5,10,31],
        ["122090","2006",10,3,4,17],
        ["122090","2007",11,3,4,18],
        ["122090","2008",10,2,4,16],
        ["122090","2009",10,2,4,16],
        ["122090","2010",10,1,4,15],
        ["122090","2011",8,1,3,12],
        ["122107","2006",10,9,5,24],
        ["122107","2007",9,9,5,23],
        ["122107","2008",9,8,5,22],
        ["122107","2009",8,8,5,21],
        ["122107","2010",8,8,5,21],
        ["122107","2011",8,8,7,23],
        ["130010","2006",6,2,2,10],
        ["130010","2007",6,2,2,10],
        ["130010","2008",3,3,2,8],
        ["130010","2009",2,3,3,8],
        ["130010","2010",3,3,3,9],
        ["130010","2011",3,2,5,10],
        ["140000","2006",26,9,11,46],
        ["140000","2007",26,11,9,46],
        ["140000","2008",26,12,11,49],
        ["140000","2009",28,13,5,46],
        ["140000","2010",27,13,4,44],
        ["140000","2011",28,13,5,46],
       ...