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/FSharp.Plotly/Chart.fs
+35-12
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,6 @@ open Trace3d
10
10
openStyleParam
11
11
openSystem.Runtime.InteropServices
12
12
13
-
14
13
// ###########
15
14
// Copied from FSharp.Care.Collections to remove dependancies
16
15
[<AutoOpen>]
@@ -34,18 +33,42 @@ module Seq =
34
33
/// Provides a set of static methods for creating charts.
35
34
typeChart=
36
35
37
-
/// Uses points, line or both depending on the mode to represent data points
36
+
37
+
/// Creates a Scatter plot. Scatter plots are the basis of Point, Line, and Bubble Charts in Plotly, and can be customized as such. We also provide abstractions for those: Chart.Line, Chart.Point, Chart.Bubble
38
+
///
39
+
///Parameters:
40
+
///
41
+
///Name : Sets the trace name. The trace name appear as the legend item and on hover
42
+
///
43
+
///Showlegend : Determines whether or not an item corresponding to this trace is shown in the legend.
44
+
///
45
+
///MarkerSymbol : Sets the type of symbol that datums are displayed as
46
+
///
47
+
///Color : Sets Line/Marker Color
48
+
///
49
+
///Opacity : Sets the Opacity of the trace
50
+
///
51
+
///Labels : Sets text elements associated with each (x,y) pair. If a single string, the same string appears over all the data points. If an array of string, the items are mapped in order to the this trace's (x,y) coordinates. If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels.
52
+
///
53
+
///TextPosition : Sets the positions of the `text` elements with respects to the (x,y) coordinates.
0 commit comments