The code below generates the top of a table that looks like: <about:invalid#zClosurez>
I'd like to have the Current Value On Hand, Max Value Next 90 Days, Current On Hand/Next 90 Requirements, and Max Next 90/Next 90 Requirements appear as Current Value Max Value Current On Hand/ Max Next 90/ On Hand Next 90 Days Next 90 Requirements Next 90 Requirements Pointers appreciated. <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <script type="text/javascript" src=" https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript"> google.charts.load('current', {'packages':['table']}); google.charts.setOnLoadCallback(drawTable); function drawTable() { var data = new google.visualization.DataTable(); data.addColumn('string', 'Material'); data.addColumn('string', 'Material Description'); data.addColumn('number', 'Current Value On Hand'); data.addColumn('number', 'Max Value Next 90 Days'); data.addColumn('number', 'Current On Hand/Next 90 Requirements'); data.addColumn('number', 'Max Next 90/Next 90 Requirements'); -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-visualization-api. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/8a99799b-82a4-4b9f-8bd9-f7b7f08f1369%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
