I have set the the date to a customizable unit...
domainAxis.setAutoRange(false);
domainAxis.setTickUnit(new DateTickUnit (DateTickUnitType.MINUTE, unitInterval));
domainAxis.setMaximumDate(new Date(30000 * groupOption * (2880 / unitInterval)));
However I want the range (value), label below axis not show for every unit because if the interval is short it will become unreadable because the labels are to close apart...
Is it possible to determine when it should be printed although the interval stays the same?
Kind regards Peter