dateAxis « BarChart « JFreeChart Q&A





1. StackedBarChart with DateAxis??    jfree.org

StackedBarChart with DateAxis?? by angel Tue Sep 20, 2005 3:49 pm I tried to use a StackedBarChart with DateAxis but failed. The axis starts with 1. January 1970 and all "sub"-bars start internally also with this date. Should look like: Code: Select all | ...

3. How to introduced Horizontal Scroll Bar for dateAxis(urgent)    jfree.org

How to introduced Horizontal Scroll Bar for dateAxis(urgent) by Anand Fri Aug 10, 2007 9:05 am Hi All , I am trying to introducted horizontal scroll bar into TimeSeries CombinedChart ,my code is working for numberaxis not for date axis can any one help me to solve this problem.Please send me the reply as soon possible it really urgent. Thanks ...

6. Issues with BarChart and DateAxis    jfree.org

Hi All, I need to change the date formet in the X-axis, but couldn't. Please help. XYPlot xyplot = (XYPlot)jfreechart.getPlot(); DateAxis dateaxis = (DateAxis)xyplot.getDomainAxis(); dateaxis.setDateFormatOverride(new SimpleDateFormat("MMM")); return jfreechart; From the above code, I can change the Date formet for the line chart. But there is no API for the same in Bar Chart. In BarChart the getDomainAxis() returns only CategoryAxis. But ...