Sha256: db1ea042ca3aaf4042d063d791b2bb3dbd3224592b6f729d977573c717195c06

Contents?: true

Size: 926 Bytes

Versions: 6

Compression:

Stored size: 926 Bytes

Contents

<html>
<head>
<script src="https://www.google.com/jsapi"></script>
<script src="turbolinks.js"></script>
</head>
<body>
  <a href="index.html">home</a>
  <div id="chart"> </div>
<script>
  google.load('visualization','1', {packages: ['corechart']});
  google.setOnLoadCallback(draw_chart);
  function draw_chart() {
    var data_table = new google.visualization.DataTable();data_table.addColumn({"type":"string","label":"Employee"});data_table.addColumn({"type":"number","label":"Base Hourly"});data_table.addRow([{v: "Mike Ross"}, {v: 8}]);data_table.addRow([{v: "Moe Syzlack"}, {v: 12}]);
    var chart = new google.visualization.BarChart(document.getElementById('chart'));
    chart.draw(data_table, {isStacked: true, width: 900, height: 900, title: "Hours Worked by Payroll Category by Employee", vAxis: {title: "Employee"}, hAxis: {title: "Hours Worked"}, chartArea: {top: 20, bottom: 0}});
  };
</script>
</body>
</html>

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
google_visualr_rails5-2.5.2 spec/turbolinks_tests/broken.html
google_visualr-2.5.1 spec/turbolinks_tests/broken.html
google_visualr-2.5.0 spec/turbolinks_tests/broken.html
google_visualr-2.4.0 spec/turbolinks_tests/broken.html
google_visualr-2.3.0 spec/turbolinks_tests/broken.html
google_visualr-2.2.0 spec/turbolinks_tests/broken.html