5
當使用F# chart control library時,我該如何指定圖例的文字? 例如:F#圖表控件更改圖例文字
FSharpChart.Line [ for f in 0.0 .. 0.1 .. 10.0 -> cos f ]
|> FSharpChart.WithLegend()
顯示文本 「GenericChart_Series_1」 一個傳奇。我如何更改文字?
當使用F# chart control library時,我該如何指定圖例的文字? 例如:F#圖表控件更改圖例文字
FSharpChart.Line [ for f in 0.0 .. 0.1 .. 10.0 -> cos f ]
|> FSharpChart.WithLegend()
顯示文本 「GenericChart_Series_1」 一個傳奇。我如何更改文字?
您可以使用圖表對象的Name
屬性指定圖例。撥打Line
會員時可以設置該屬性:
FSharpChart.Line([ for f in 0.0 .. 0.1 .. 10.0 -> cos f ], Name = "Cos")
|> FSharpChart.WithLegend()