Last active
August 29, 2015 14:07
-
-
Save TahaHachana/6fc88dd6024cf683a33f 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 data = ["Memory", 80; "CPU", 55; "Network", 68] | |
let options = | |
Options( | |
width = 400, | |
height = 120, | |
redFrom = 90, | |
redTo = 100, | |
yellowFrom = 75, | |
yellowTo = 90, | |
minorTicks = 5 | |
) | |
let chart = | |
Chart.Gauge data | |
|> Chart.WithOptions options | |
|> Chart.Show |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment