#load "../packages/FsPlot.0.6.5/FsPlotBootstrap.fsx"
open FsPlot.Highcharts.Charting
let allocated =
[("Sales", 43000); ("Marketing", 19000); ("Development", 60000);
("Customer Support", 35000); ("IT", 17000)]
let chart =
allocated
|> DynamicChart.Radar
|> DynamicChart.WithShift false
|> DynamicChart.WithName "Allocated Budget"
|> DynamicChart.WithLegend true
|> DynamicChart.WithTitle "Allocated Budget"
chart.Push ("Administration", 10000)
DynamicChart.Close chart