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

Combining PHP Registration and Login into one class with multiple functions in one PHP file -

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -