Search found 4 matches

by yumex85
Tue Sep 28, 2010 1:35 pm
Forum: JFreeChart
Topic: How to localize the legends values(chinese ) in JFreeChart
Replies: 6
Views: 10862

Re: How to localize the legends values(chinese ) in JFreeChart

It worked for me too, I was trying to set the chart title with japanese characters (many japanese chars r like chinese). Thank you very much.

chart.getTitle().setFont(new java.awt.Font("Sans-serif", java.awt.Font.PLAIN, 12));
by yumex85
Tue Aug 25, 2009 10:12 pm
Forum: JFreeChart
Topic: Line chart with several data in domain axis
Replies: 3
Views: 4293

Re: Line chart with several data in domain axis

check this discussion about it:
http://www.jfree.org/phpBB2/viewtopic.p ... 5&start=15

it was very helpful to me
by yumex85
Tue Aug 25, 2009 10:09 pm
Forum: JFreeChart
Topic: Skip category labels
Replies: 29
Views: 52713

Re: Skip category labels

Guys, maybe one thing might help you in case this patch doesnt work. At least that was happening to me, and that was because I was using a newer version of JFreeChart that does not have drawCategoryLabels method anymore. In other words, that method was not an override one anymore. I thought maybe th...