使用F# chart control library时,如何指定图例的文字? 例如:
FSharpChart.Line [ for f in 0.0 .. 0.1 .. 10.0 -> cos f ]
|> FSharpChart.WithLegend()
显示带有文本“GenericChart_Series_1”的图例。如何更改文字?
答案 0 :(得分:5)
您可以使用图表对象的Name
属性指定图例。调用Line
成员时可以设置该属性:
FSharpChart.Line([ for f in 0.0 .. 0.1 .. 10.0 -> cos f ], Name = "Cos")
|> FSharpChart.WithLegend()