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?