Search found 1 match

by nik9000
Tue Oct 20, 2009 9:28 pm
Forum: JFreeChart
Topic: How to Skip labels on domain Axis when data is more
Replies: 9
Views: 13368

Re: How to Skip labels on domain Axis when data is more

I did it by making a new CategoryAxis and then using it instead of the standard one. Its a little hacky but it get the job done. import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; import java.util.ArrayList; import java.util.List; import org.jfree.chart.axis.AxisState; import org.jfree.ch...