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 Axis.TextOrientation is exposed anywhere.
Here is the code:
#load "packages/FSharp.Charting.0.87/FSharp.Charting.fsx"
open FSharp.Charting
open System.Drawing
Chart.Line([0,0;1,0;2,1;3,1;5,0; 6,0])
.WithYAxis(Title = "Y", TitleAlignment = StringAlignment.Far)
.WithXAxis(Title = "x", TitleAlignment = StringAlignment.Far)
.ShowChart()