Using this code from google line charts I get the following error all the time:
Uncaught SyntaxError: missing ) after argument list
code:
<script type="text/javascript">
  google.charts.load('current', {packages: ['corechart', 'line']});
  google.charts.setOnLoadCallback(drawLogScales);
  google.charts.setOnLoadCallback(drawLogScalesLTC);
  function drawLogScales() {
        var data = new google.visualization.DataTable();
        data.addColumn('number', 'X');
        data.addColumn('number', 'PTH/s');
        data.addRows([
          [new Date(2016-12-15 21:23:07), 0.78],
          [new Date(2016-12-14 21:23:07), 5.31],
          [new Date(2016-12-13 21:23:07), 8.38],
          [new Date(2016-12-12 21:23:07), 0.72],
          [new Date(2016-12-11 21:23:07), 3.27],
          [new Date(2016-12-10 21:23:07), 0.78],
        ]);
        var options = {
          hAxis: {
            title: 'Time (h)',
            logScale: true
          },
          vAxis: {
            title: 'PTH/s',
            logScale: false
          },
          colors: ['#a52714', '#097138']
        };
        var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
        chart.draw(data, options);
      }
</script>
I'm totally baffled where things go wrong. The synatx is fine I think.
 
    