You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Plotly.NET/CommonAbstractions/StyleParams.fs
+5-7
Original file line number
Diff line number
Diff line change
@@ -247,14 +247,12 @@ module StyleParam =
247
247
| True
248
248
| False
249
249
| SD
250
-
251
-
static membertoString=function
252
-
| True ->"true"
253
-
| False ->"false"
254
-
| SD ->"SD"
255
250
256
-
static memberconvert= BoxMean.toString >> box
257
-
overridethis.ToString()= this |> BoxMean.toString
251
+
static memberconvert=function
252
+
| True -> box true
253
+
| False -> box false
254
+
| SD -> box "sd"
255
+
258
256
memberthis.Convert()= this |> BoxMean.convert
259
257
260
258
/// For bar and histogram plots only. This sets how multiple bar objects are plotted together. In other words, this defines how bars at the same location
0 commit comments