Sets the label of the y-axis, returns the modified chart object.
References:
http://www.jfree.org/jfreechart/api/javadoc/
http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/JFreeChart.html
(defn set-y-label
" Sets the label of the y-axis, returns the modified chart object.
References:
http://www.jfree.org/jfreechart/api/javadoc/
http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/JFreeChart.html
"
([chart label]
(.setLabel (.getRangeAxis (.getPlot chart)) label)
chart))
Comments top
No comments for set-y-label. Log in to add a comment.