gpt4 book ai didi

.net - FSharpChart 空白输出

转载 作者:行者123 更新时间:2023-12-02 20:56:31 25 4
gpt4 key购买 nike

我目前正在尝试获取 FSharpChart上类。不幸的是,在编译库并向任何 FSharpChart 提供数据后,无论我使用 FSharpChart.WithCreate,我都只能得到空白输出。 , FSharpChart.SaveAsFSharpChart.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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com