Struggling with a graph display issue here. It's quite perplexing as it works fine on older laptops and Safari, but not on Chrome or older versions of Firefox.
Works like a charm on my old laptop and Safari, but fails on Chrome and Firefox (haven't tested IE).
Using Impress.js for some fancy transitions... maybe that's causing the problem, but I'd like to think otherwise because I want to keep using the library...
I've identified the issue somewhat, the chart is visible when I remove the background CSS property of the div where the chart is located, but I really need that background color...
$.getJSON(q_project_info, function(results) { var data = new google.visualization.DataTable(); data.addColumn('string', 'xxxxxx'); data.addColumn('number', 'xxxxx'); $.each(results.d, function(i, v) { ................ }); var options = { title: 'xxxxxxxx', height: '300', backgroundColor: '#F5F5F5', colors: ['#036109', '#58892d'], legend: 'none' }; var chart = new google.visualization.AreaChart(document.getElementById('xxxxxxxxx')); chart.draw(data, options); } ); .slide { /**/ display: block; width: 900px; height: 700px; padding: 40px 60px; border-radius: 10px; /**/ background: #F5F5F5; border: 1px solid rgba(0, 0, 0, .3); font-family: 'Open Sans', Arial, sans-serif; color: rgb(102, 102, 102); }
Hopefully someone can help me figure out how to display the chart...