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
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -351,6 +351,7 @@ module ChartSmith =
351
351
/// </summary>
352
352
/// <paramname="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
/// <paramname="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
+
/// <paramname="ShowMarkers">Wether or not to show markers for each datum.</param>
354
355
/// <paramname="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
355
356
/// <paramname="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
356
357
/// <paramname="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
/// <paramname="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
+
/// <paramname="ShowMarkers">Wether or not to show markers for each datum.</param>
449
451
/// <paramname="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
450
452
/// <paramname="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
451
453
/// <paramname="Opacity">Sets the opactity of the trace</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET/Config/ObjectAbstractions/Edits.fs
+15-3Lines changed: 15 additions & 3 deletions
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
-
/// <paramname="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
+
/// <paramname="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
/// <paramname="AnnotationTail">Has only an effect for annotations with arrows. Enables changing the length and direction of the arrow.</param>
/// <paramname="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
+
/// <paramname="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
+
/// <paramname="AnnotationTail">Has only an effect for annotations with arrows. Enables changing the length and direction of the arrow.</param>
0 commit comments