Last active
August 29, 2015 14:26
-
-
Save arathunku/16aec660c70c1a22e070 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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