- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的项目中将 FSharpChart 与 fsx 脚本文件一起使用。我使用 Nuget 下载并引用了 MSDN.FSharpChart.dll,我的代码如下所示
#r @"..\packages\MSDN.FSharpChart.dll.0.60\lib\MSDN.FSharpChart.dll"
open System.Drawing
open MSDN.FSharp.Charting
[for x in 0.0 .. 0.1 .. 6.0 -> sin x + cos (2.0 * x)]
|> FSharpChart.Line
路径是正确的,因为 VS 2012 为我提供了智能感知并且知道 MSDN.FSharp 命名空间。问题是当我在 FSI 中运行此脚本时,没有显示任何内容。
出了什么问题?
最佳答案
为了使您的图表从 FSI 显示,您应该将 FSharpChart.fsx 预加载到您的 FSI session 中,如下面的代码片段所示:
#load @"<your path here>\FSharpChart.fsx"
[for x in 0.0 .. 0.1 .. 6.0 -> sin x + cos (2.0 * x)]
|> MSDN.FSharp.Charting.FSharpChart.Line;;
2012 年 8 月 23 日更新:为了进行比较,从 FSharpChart.dll
可视化相同的图表将需要一些 WinForms 管道:
#r @"<your path here>\MSDN.FSharpChart.dll"
#r "System.Windows.Forms.DataVisualization.dll"
open System.Windows.Forms
open MSDN.FSharp.Charting
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)
关于f# - 如何从 fsx 脚本文件使用 FSharpChart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11798568/
我目前正在尝试获取 FSharpChart上类。不幸的是,在编译库并向任何 FSharpChart 提供数据后,无论我使用 FSharpChart.WithCreate,我都只能得到空白输出。 , F
我正在使用 FSharpChart 在同一图形上打印移动平均线和股票交易量。问题是一个图形从 20 到 50 或多或少,另一个从 0 到 8000 万,所以当我将两者组合时,一个被拆分到底部,这是无用
在 F# Interactive 中运行时,我希望以下代码创建一个简单的饼图并将其保存到磁盘: let pie = FSharpChart.Pie([("Apples",1);("Oranges",2
我想在我的项目中将 FSharpChart 与 fsx 脚本文件一起使用。我使用 Nuget 下载并引用了 MSDN.FSharpChart.dll,我的代码如下所示 #r @"..\packages
嗨,我是菜鸟,问这个新手问题,请原谅。 我已经在我的本地目录中成功安装了 FSharpChart ... Added package 'MSDN.FSharpChart.dll.0.60.0' to
我是一名优秀的程序员,十分优秀!