Google Charts Options and Javascript Syntax
I have a javascript function that succesfully draws a line chart using the google charts api. google.load(‘visualization’, ‘1.1’, { packages: [‘corechart’] }); google.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(); data.addColumn(‘number’, ‘Day In Theater’); data.addColumn(‘number’, ‘Movie 1’); data.addColumn(‘number’, ‘Movie 2’); data.addColumn(‘number’, ‘Movie 3’); data.addRows([ [1, 37.8, 80.8, 41.8], [2, 30.9, 69.5, 32.4], [3, 25.4,… Read More Google Charts Options and Javascript Syntax