#load "../packages/FsPlot.0.6.5/FsPlotBootstrap.fsx" | |
open FsPlot.Highcharts.Charting | |
open System | |
let tempratures = | |
let rnd = Random() | |
[0. .. 6.] | |
|> List.map(fun x -> | |
DateTime.Now.AddDays x, rnd.Next(-5, -1), rnd.Next(4, 8)) | |
let chart = | |
tempratures | |
|> Chart.Arearange | |
|> Chart.WithName "Tempratures" | |
|> Chart.WithTitle "Temprature Variation" | |
Chart.Close chart |