I am using the newFifteenMinuteTimeLine successfully, and removing market hours as well as weekends.
I also require removing Holidays (Thanks Giving, Christmas, etc). So I'm adding an exclusions (Nov 26th), and that also works successfully. However, the date label for the 26th still appears, and is displayed undernear the 27th. It's an overlapping effect. How can I fix this?
Exclusion code:
Code: Select all
Calendar cal = Calendar.getInstance();
cal.set(Calendar.YEAR, 2009);
cal.set(Calendar.MONTH, Calendar.NOVEMBER);
cal.set(Calendar.DAY_OF_MONTH, 26);
cal.set(Calendar.HOUR_OF_DAY, 9);
intraDayStockUS.addException(cal.getTimeInMillis(), cal.getTimeInMillis() + 21600000);
Has anyone had any success with Holiday support in Jfreechart? Also, if this is an acknowldged bug, does it have a scope for being fixed?