Skip to content

Instantly share code, notes, and snippets.

@arathunku
Last active August 29, 2015 14:26
Show Gist options
  • Save arathunku/16aec660c70c1a22e070 to your computer and use it in GitHub Desktop.
Save arathunku/16aec660c70c1a22e070 to your computer and use it in GitHub Desktop.
(let [plot (histogram (sample-normal 20))
render (-> plot .getPlot .getRenderer)]
(add-histogram plot (sample-normal 20))
; changes color of the outline
(.setSeriesOutlinePaint render 1 java.awt.Color/BLUE)
; does nothing, fill paint remains unchanged. ???????
(.setSeriesFillPaint render 1 java.awt.Color/BLUE)
(view plot))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment