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
Plotly.NET is a .NET wrapper for creation of [plotly charts]() written in F#. This means that, under the hood, all functionality creates JSON objects that can be rendered by plotly.
31
44
@@ -35,15 +48,16 @@ The central type that gets created by all Chart constructors is `GenericChart`,
As you can see, a `GenericChart` consists of three top level objects - `Trace` (multiple of those in the case of a MultiChart) , `Layout`, and `Config`.
55
+
As you can see, a `GenericChart` consists of four top level objects - `Trace` (multiple of those in the case of a MultiChart) , `Layout`, `Config`, and `DisplayOptions`.
43
56
44
57
- `Trace` is in principle the representation of a dataset on a chart, including for example the data itself, color and shape of the visualization, etc.
45
58
- `Layout` is everything of the chart that is not dataset specifivc - e.g. the shape and style of axes, the chart title, etc.
46
59
- `Config` is an object that configures high level properties of the chart like making all chart elements editable or the tool bar on top
60
+
- `DisplayOptions` is an object that contains meta information about how the html document that contains the chart.
0 commit comments