Search found 1 match
- Thu Aug 14, 2008 10:55 pm
- Forum: JFreeChart
- Topic: How to change font of legend in bar chart?
- Replies: 5
- Views: 16872
Unable to change the legend font on a bar chart
Hi, I am using jfreechart to create a bar chart. I am unable to change the font of the legend though. This is my code: LegendTitle legend = new LegendTitle(plot); Font font = new Font("Arial",0,12); legend.setItemFont(font); legend.setPosition(RectangleEdge.BOTTOM); chart.addLegend(legend); I looked...