We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 061b33e commit 7194110Copy full SHA for 7194110
src/Plotly.NET/Traces/ObjectAbstractions/Selection.fs
@@ -41,7 +41,9 @@ type FontSelectionStyle() =
41
42
// Applies the styles to Font()
43
static member style([<Optional; DefaultParameterValue(null)>] ?Color: Color) =
44
- (fun (fontSelectionStyle: FontSelectionStyle) -> Color |> DynObj.setValueOpt fontSelectionStyle "color")
+ (fun (fontSelectionStyle: FontSelectionStyle) ->
45
+ Color |> DynObj.setValueOpt fontSelectionStyle "color"
46
+ fontSelectionStyle)
47
48
type Selection() =
49
inherit DynamicObj()
0 commit comments