Last active
August 29, 2015 14:07
-
-
Save TahaHachana/59d5f8a0ba8cf3ada86e 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 chart = | |
[ | |
"Work", 11 | |
"Eat", 2 | |
"Commute", 2 | |
"Watch TV", 2 | |
"Sleep", 7 | |
] | |
|> Chart.Pie | |
|> Chart.WithTitle "My Daily Activities" | |
|> Chart.WithLegend true | |
|> Chart.Show |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment