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/ChartSmith.fs
+2
Original file line number
Diff line number
Diff line change
@@ -351,6 +351,7 @@ module ChartSmith =
351
351
/// </summary>
352
352
/// <param name="real">Sets the real component of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart.</param>
353
353
/// <param name="imag">Sets the imaginary component of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart.</param>
354
+
/// <param name="ShowMarkers">Wether or not to show markers for each datum.</param>
354
355
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
355
356
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
356
357
/// <param name="Opacity">Sets the opactity of the trace</param>
@@ -446,6 +447,7 @@ module ChartSmith =
446
447
/// In general, LineSmith charts plot complex numbers on a transformed two-dimensional Cartesian complex plane as datums connected by a line. Complex numbers with positive real parts map inside the circle. Those with negative real parts map outside the circle.
447
448
/// </summary>
448
449
/// <param name="realImag">Sets the real and imaginary components of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart.</param>
450
+
/// <param name="ShowMarkers">Wether or not to show markers for each datum.</param>
449
451
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
450
452
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
451
453
/// <param name="Opacity">Sets the opactity of the trace</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET/Config/ObjectAbstractions/Edits.fs
+15-3
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ type Edits() =
11
11
inherit DynamicObj()
12
12
13
13
/// <summary>
14
-
///
14
+
/// Returns a new Edits Object with the given styling.
15
15
/// </summary>
16
-
/// <param name="AnnotationPosition">Determines if the main anchor of the annotation is editable. The main anchor corresponds to the text (if no arrow) or the arrow (which drags the whole thing leaving the arrow length & direction unchanged).</param>
16
+
/// <param name="AnnotationPosition">Determines if the main anchor of the annotation is editable. The main anchor corresponds to the text (if no arrow) or the arrow (which drags the whole thing leaving the arrow length and direction unchanged).</param>
17
17
/// <param name="AnnotationTail">Has only an effect for annotations with arrows. Enables changing the length and direction of the arrow.</param>
/// <param name="AxisTitleText">Enables editing axis title text.</param>
@@ -51,7 +51,19 @@ type Edits() =
51
51
52
52
)
53
53
54
-
// Applies the styles to Config()
54
+
/// <summary>
55
+
/// Returns a function that apllioes the given styles to an Edits Object.
56
+
/// </summary>
57
+
/// <param name="AnnotationPosition">Determines if the main anchor of the annotation is editable. The main anchor corresponds to the text (if no arrow) or the arrow (which drags the whole thing leaving the arrow length and direction unchanged).</param>
58
+
/// <param name="AnnotationTail">Has only an effect for annotations with arrows. Enables changing the length and direction of the arrow.</param>
0 commit comments