Skip to content
Snippets Groups Projects
Commit 23f2c1b5 authored by Lillian Gray's avatar Lillian Gray
Browse files

Changed how function to first draw chart is called

to match instructions in Google Charts
parent eb8c6c50
Branches
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="css/main.css" /> <link rel="stylesheet" type="text/css" href="css/main.css" />
<!--Scripts at bottom --> <!--Scripts at bottom -->
</head> </head>
<body onload="initializeLineChart();"> <body>
<div id="header"> <div id="header">
<div class="flex-parent"> <div class="flex-parent">
<img src="images/logo.png" title="Logo" border="none"/></img> <img src="images/logo.png" title="Logo" border="none"/></img>
...@@ -63,6 +63,7 @@ ...@@ -63,6 +63,7 @@
<script type="text/javascript" src="js/loader.js"></script> <script type="text/javascript" src="js/loader.js"></script>
<script type="text/javascript"> <script type="text/javascript">
google.charts.load('45.2', {packages:['corechart', 'controls']}); google.charts.load('45.2', {packages:['corechart', 'controls']});
google.charts.setOnLoadCallback(initializeLineChart);
</script> </script>
</body> </body>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment