Search found 3 matches
- Wed Jun 16, 2010 7:37 pm
- Forum: JFreeChart
- Topic: Custom CategoryAxis Labels
- Replies: 3
- Views: 7745
Re: Custom CategoryAxis Labels
Thanks! I was having the exact same issue. I used your extended SymbolAxis class and everything works fine
- Wed Jun 16, 2010 7:10 pm
- Forum: JFreeChart
- Topic: Periodic CategoryAxis ticks
- Replies: 1
- Views: 2569
Re: Periodic CategoryAxis ticks
This post solved it:
http://www.jfree.org/phpBB2/viewtopic.p ... xis#p82564
http://www.jfree.org/phpBB2/viewtopic.p ... xis#p82564
- Tue Jun 15, 2010 8:56 pm
- Forum: JFreeChart
- Topic: Periodic CategoryAxis ticks
- Replies: 1
- Views: 2569
Periodic CategoryAxis ticks
I'm working with some data that is in this format: AAAAA,0.888 AAAAT,0.123 AAAAC,0.345 .... TTTTT,0.333 There's 1024 lines of that type of data, each with unique strings in the first field. This becomes a problem when using a Line Chart from JFreeChart chart = ChartFactory.createLineChart() Is using...