Skip to content

Commit 0956db2

Browse files
committed
Tableplot param flow - wip
1 parent 27cd96f commit 0956db2

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

src/data_visualization/tableplot_parameter_flow.clj

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@
1515
^:kindly/hide-code
1616
(kind/hiccup
1717
[:style
18-
".printed-clojure {
19-
max-height:400px;
18+
".printedClojure {
19+
max-height:600px;
2020
overflow-y: auto;
21-
}
22-
"])
21+
}"])
2322

2423
;; ## Introduction
2524
;;
@@ -194,3 +193,15 @@ sample-data
194193
plotly/plot
195194
(assoc-in [:layout :xaxis :gridcolor] "green")
196195
(assoc-in [:layout :yaxis :gridcolor] "red"))
196+
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

Comments
 (0)