Skip to content

Instantly share code, notes, and snippets.

@kjunichi
Created October 19, 2012 04:33
Show Gist options
  • Save kjunichi/3916255 to your computer and use it in GitHub Desktop.
Save kjunichi/3916255 to your computer and use it in GitHub Desktop.
google.visualization.LineChart のオプション
interpolateNulls:true 間のデータをつないでくれる
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, {
interpolateNulls:true,
curveType:"none",
width: 600, height: 384, title: 'EUR Performance'});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment