charts - Fill area in Incanter -


is possible create filled area in chart using incanter (clojure)? cannot find in manual.

for instance, have following function create simple scatter plot:

(defn daycurve-test [] (doto (scatter-plot (range 0 20) (range 0 20)) (add-polygon [[0 0] [0 10] [10 10] [10 0]]) view))

this draw scatter plot , black rectangle on screen. there way fill rectangle using e.g. red?


Comments

Popular posts from this blog

Lists in Python -

android - can not access to progress bar in an other activity -

html - Not able to access next element of an array javascript -