Last active
August 29, 2015 14:07
-
-
Save TahaHachana/e723a85381063a9f9e16 to your computer and use it in GitHub Desktop.
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
#load "../packages/XPlot.GoogleCharts.1.0.1/XPlot.GoogleCharts.fsx" | |
open XPlot.GoogleCharts | |
let options = Options(showTip = true) | |
let chart = | |
[ | |
"China", "China: 1,363,800,000" | |
"India", "India: 1,242,620,000" | |
"US", "US: 317,842,000" | |
"Indonesia", "Indonesia: 247,424,598" | |
"Brazil", "Brazil: 201,032,714" | |
"Pakistan", "Pakistan: 186,134,000" | |
"Nigeria", "Nigeria: 173,615,000" | |
"Bangladesh", "Bangladesh: 152,518,015" | |
"Russia", "Russia: 146,019,512" | |
"Japan", "Japan: 127,120,000" | |
] | |
|> Chart.Map | |
|> Chart.WithOptions options | |
|> Chart.WithHeight 420 | |
|> Chart.Show |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment