Questions tagged [fsharpchart]

The F# Charting library implements charting suitable for use from F# scripting.

Full details on downloading and using F#-Charting, including examples, are available at https://fslab.org/FSharp.Charting/

42 questions
1
vote
1 answer

how to set opacity and line type in FSharp.Charting

I know how to control color, fontsize and gridlines in FSharp.Charting. But is there way to set opacity for a line color and/or change the line type to dashed for example. #load @"..\..\FSLAB\packages\FsLab\Fslab.fsx" open FSharp.Charting open…
s952163
  • 6,276
  • 4
  • 23
  • 47
1
vote
1 answer

F# Charting No Automatic Axis Range Setting?

It's not really an issue, more of a question. I am using FSharp.Charting to graph a few quick things. One thing I noticed is that the chart doesn't automatically set the axis limits for you. Say I have a list of numbers that has values between…
user3685285
  • 6,066
  • 13
  • 54
  • 95
1
vote
1 answer

How to set the quality of grids for xaxis grid in Fsharp.Charting?

I use Yahoo Finance data to compare two company's close price: #load "C:\Users\Nick\Documents\Visual Studio 2013\packages\FSharp.Charting.0.90.9\FSharp.Charting.fsx" open FSharp.Data open FSharp.Charting open System open System.Drawing open…
Nick
  • 8,451
  • 13
  • 57
  • 106
1
vote
0 answers

FSharp.Charting and settings the major tick step

I am trying to use FSharp.Charting for visualisation. However a stumbling block for me is that I am using the tutorial at Try F#, but the FSharp.Charting dll is different - has different methods signatures etc. I am trying to translate the…
Tahir Hassan
  • 5,715
  • 6
  • 45
  • 65
1
vote
1 answer

FsharpCharts for silverlight / f#

This might be a stupid question, but there are soo many combinations of approach (wpf, silverlight, winforms, html5) with incompatibility at mscorlib level, that I got completely lost. I would like to be able to have a few windows mainly displaying…
nicolas
  • 9,549
  • 3
  • 39
  • 83
0
votes
1 answer

fsharp.charting.gsk System.IO.FileNotFoundException when running in mono

I am confused about the difference between referencing fsharp.charting.gtk in interactive and compile mode. The following code #load "FSharp.Charting.Gtk.2.1.0/lib/net45/FSharp.Charting.Gtk.fsx" open FSharp.Charting;; Chart.Line [ for x in…
Jon
  • 163
  • 1
  • 8
0
votes
1 answer

FSharp Charting on Deedle series how to plot two series into one chart

I have following F# script code: #load "packages/FsLab.1.1.6/FsLab.fsx" #load "packages\FSharp.Charting.2.1.0\FSharp.Charting.fsx" open Deedle open FSharp.Data open FSharp.Charting open Deedle.Series ... …
ahala
  • 4,683
  • 5
  • 27
  • 36
0
votes
1 answer

Fsharp / how to change type Node of (string * FsTree) list into a list where 2paths cannot be identical

In FSharp, I would like to do the following given a type : type FsTree = Node of (string * FsTree) list I would like to define a predicate toStringList so that : toStringList myFsTree gives the bellow result result : [ ["n1"]; ["n2";…
0
votes
1 answer

Non-blocking Chart.Show in FSharp.Charting

Using FSharp.Charting from a .fs program, when a plot is displayed it blocks the execution of rest of the program. Is there a way to generate non blocking charts? E.g. I would want both the following to be displayed in separate windows and also have…
0
votes
2 answers

How to select a time period in the in FSharp.Data?

I wrote this script to plot the historical financial data: open FSharp.Data #load "C:\Users\Nick\Documents\Visual Studio 2013\Projects\TryFsharp\packages\FSharp.Charting.0.90.9\FSharp.Charting.fsx" open FSharp.Charting open System let plotprice…
Nick
  • 8,451
  • 13
  • 57
  • 106
0
votes
1 answer

How to turn Y axis label back

I am using FSharp.Charting 0.87 to draw very basic chart of linear function. Is there a way to turn Y axis label back to normal position? In other words, can I have 'Y' oriented normally, not turned at 90 degrees? Namely, I wonder if…
0
votes
2 answers

Fsharp - types compilation error

I am new to F#, and I'd love to get some help :) I have ? compilation error on this code, and I can't figure it out: printfn "Please enter the path for the Jack file/s directory" let dir = System.Console.ReadLine() let jackFiles : List =…
cookya
  • 3,019
  • 7
  • 26
  • 37
1 2
3