We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27cd96f commit 0956db2Copy full SHA for 0956db2
src/data_visualization/tableplot_parameter_flow.clj
@@ -15,11 +15,10 @@
15
^:kindly/hide-code
16
(kind/hiccup
17
[:style
18
- ".printed-clojure {
19
- max-height:400px;
+ ".printedClojure {
+ max-height:600px;
20
overflow-y: auto;
21
-}
22
-"])
+}"])
23
24
;; ## Introduction
25
;;
@@ -194,3 +193,15 @@ sample-data
194
193
plotly/plot
195
(assoc-in [:layout :xaxis :gridcolor] "green")
196
(assoc-in [:layout :yaxis :gridcolor] "red"))
+
197
+;; ### A brief look inside
198
199
+;; You already know what to expect here:
200
201
+(-> sample-data
202
+ plotly/layer-line
203
+ plotly/plot
204
+ (assoc-in [:layout :xaxis :gridcolor] "green")
205
+ (assoc-in [:layout :yaxis :gridcolor] "red")
206
+ kind/pprint)
207
0 commit comments