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
Code: Select all
JFreeChart chart = ChartFactory.createLineChart()

What I would like is a label on the x-axis (the CategoryAxis) every ~64th column instead of all 1024 labels. I read the FAQ about using a SlidingCategoryDataSet, but this seems to only show subsets of the data, rather than hide the ticks/labels.
Cheers!