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
@@ -53,7 +55,7 @@ These are mirrored in Plotly.NET's central type, `GenericChart`:
53
55
54
56
The central type that gets created by all Chart constructors is `GenericChart`, which itself represents either a single chart or a multi chart (as a Discriminate Union type). It looks like this:
55
57
56
-
```fsharp
58
+
```
57
59
type GenericChart =
58
60
| Chart of Trace * Layout * Config * DisplayOptions
59
61
| MultiChart of Trace list * Layout * Config * DisplayOptions
@@ -76,13 +78,15 @@ Plotly.NET uses multiple layers of abstractions to generate valid plotly.js JSON
76
78
The `Chart` module provides the highest layer of abstraction. Here, plotly.js trace types are broken down to the most common and useful styling options, and combined with common layout settings.
77
79
It also provides composite charts which consist of multiple traces such as `Chart.Range`, which really is a combination of 3 scatter traces.
78
80
81
+
In general, we recommend always using named arguments - even for mandatory arguments - as future changes/addition to the API might change the argument order.
82
+
79
83
Here is an example on how to create a simple 2D point chart:
0 commit comments