Created
October 19, 2012 04:33
-
-
Save kjunichi/3916255 to your computer and use it in GitHub Desktop.
google.visualization.LineChart のオプション
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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