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/ChartAPI/Chart2D.fs
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -3066,8 +3066,8 @@ module Chart2D =
3066
3066
/// <param name="MarkerColor">Sets the color of the histogram's bars.</param>
3067
3067
/// <param name="Marker">Sets the marker for the histogram's bars (use this for more finegrained control than the other marker-associated arguments).</param>
3068
3068
/// <param name="Line">Sets the outline of the histogram's bars.</param>
3069
-
/// <param name="ErrorX">Sets the x error of this trace.</param>
3070
-
/// <param name="ErrorY">Sets the y error of this trace.</param>
3069
+
/// <param name="XError">Sets the x error of this trace.</param>
3070
+
/// <param name="YError">Sets the y error of this trace.</param>
3071
3071
/// <param name="Cumulative">Sets wether and how the cumulative distribution is displayed</param>
3072
3072
/// <param name="HoverLabel">Sets the style of the hoverlabels of this trace.</param>
3073
3073
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET/Traces/ObjectAbstractions/Error.fs
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,9 @@ open System.Runtime.InteropServices
10
10
typeError()=
11
11
inherit DynamicObj()
12
12
13
-
/// <summary>Init Error type</summary>
13
+
/// <summary>
14
+
/// Returns a new Error object with the given styling.
15
+
/// </summary>
14
16
/// <param name ="Visible">Determines whether or not this set of error bars is visible.</param>
15
17
/// <param name ="Type">Determines the rule used to generate the error bars. If "constant`, the bar lengths are of a constant value. Set this constant in `value`. If "percent", the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If "sqrt", the bar lengths correspond to the square of the underlying data. If "data", the bar lengths are set with data set `array`.</param>
16
18
/// <param name ="Symmetric">Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.</param>
@@ -42,6 +44,8 @@ type Error() =
42
44
)=
43
45
Error()
44
46
|> Error.style (
47
+
?Visible = Visible,
48
+
?Type = Type,
45
49
?Symmetric = Symmetric,
46
50
?Array = Array,
47
51
?Arrayminus = Arrayminus,
@@ -55,7 +59,9 @@ type Error() =
55
59
?Width = Width
56
60
)
57
61
58
-
/// <summary>Creates a function that applies the given style parameters to an Error object</summary>
62
+
/// <summary>
63
+
/// Returns a function that applies the given style parameters to an Error object
64
+
/// </summary>
59
65
/// <param name ="Visible">Determines whether or not this set of error bars is visible.</param>
60
66
/// <param name ="Type">Determines the rule used to generate the error bars. If "constant`, the bar lengths are of a constant value. Set this constant in `value`. If "percent", the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If "sqrt", the bar lengths correspond to the square of the underlying data. If "data", the bar lengths are set with data set `array`.</param>
61
67
/// <param name ="Symmetric">Determines whether or not the error bars have the same length in both direction (top/bottom for vertical bars, left/right for horizontal bars.</param>
0 commit comments