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
A common workflow is to create multiple plots with a similar style. Rather then setting nearly identical layouts for multiple plots, you can set default values for a variety of items. HTML defaults (`class`/`style`/`parent_class`/`parent_style`) are chosen to make the plot reactive to the browser window size.
112
+
You can set default values for the `layout`, `config`, and a number of other options that affect how the plot displays in your browser. HTML defaults (`class`/`style`/`parent_class`/`parent_style`) are chosen to make the plot reactive to the browser window size.
113
113
114
114
```julia
115
115
module Defaults
@@ -133,10 +133,10 @@ end
133
133
</div>
134
134
```
135
135
136
-
- Default values can be set e.g.
136
+
- Default values are `Ref`s and can be changed e.g.
0 commit comments