F#图表控件更改图例文本

时间:2011-06-03 02:54:30

标签: .net f# mschart

使用F# chart control library时,如何指定图例的文字? 例如:

    FSharpChart.Line [ for f in 0.0 .. 0.1 .. 10.0 -> cos f ] 
   |> FSharpChart.WithLegend()

显示带有文本“GenericChart_Series_1”的图例。如何更改文字?

1 个答案:

答案 0 :(得分:5)

您可以使用图表对象的Name属性指定图例。调用Line成员时可以设置该属性:

FSharpChart.Line([ for f in 0.0 .. 0.1 .. 10.0 -> cos f ], Name = "Cos")
|> FSharpChart.WithLegend()