FSharp.Charting
FSharp.Charting copied to clipboard
Strange Axis labels
I noticed that FSharp.Charting is creating strange Axis labels:

this is how Octave does it:

It's also strange that X-Axis starts at 30, but y-Axis starts at 0.
Agreed - there must surely be some default charting setting to do a better job on this. If you can find the appropriate setting, we can make it the default.
Well, if default setting looks weird you can change them to more fitable value.
Let's get for example simple line chart from documentation:
[ for i in 0.0 .. 0.02 .. 2.0 * Math.PI -> (sin i, cos i * sin i) ]
|> Chart.Line
With custom format
|> Chart.WithXAxis(LabelStyle=ChartTypes.LabelStyle.Create(Format="F2"))
