我目前正在尝试使FSharpChart工作。不幸的是,在编译库并向任何FSharpChart提供数据后,无论使用FSharpChart.WithCreateFSharpChart.SaveAs还是FSharpChart.CopyToClipboard,我都只会得到空白输出。

甚至包括的示例也会产生空白输出。
当然,我已经安装了Visual Studio 2010 SP1,具有所有最新修补程序的.NET Framework 4.0等。该代码托管在Windows 7 x64上。

我想念什么?

最佳答案

我知道已经很长时间了,但是在遇到了同样的问题之后,我发现刷新表格可以解决问题:

open System.Windows.Forms
open MSDN.FSharp.Charting

[<EntryPoint>]
let main argv =
    let myChart = [for x in 0.0 .. 0.1 .. 6.0 -> sin x + cos (2.0 * x)]
                  |> FSharpChart.Line
    let form = new Form(Visible = true, TopMost = true, Width = 700, Height = 500)
    let ctl = new ChartControl(myChart, Dock = DockStyle.Fill)
    form.Controls.Add(ctl)
    form.Refresh()
    System.Console.ReadKey() |> ignore
    0

关于.net - FSharpChart空白输出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6532254/

10-10 15:08