Using F# Charting I am able to change axis label font sizes with
chart |> Chart.WithArea.AxisX(LabelStyle = myStyle)
however have not found a way to change data point label font sizes
let myChart = Chart.Line prices |> Chart.WithDataPointLables(Label = "hello")
created as above.
Any know how to go about this?
This doesn't seem to be supported directly
FSharp.Chartingbut the library does provide a hole through its abstraction so you can access the underlying chart representation and do whatever you want to it. Assuming that you're running this on Windows withSystem.Windows.Forms.DataVisualization, which the library uses by default, then you can do this: