1. StackedBarChart with DateAxis?? jfree.orgStackedBarChart 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 | ... |
2. Stacked Bar Chart with domain DateAxis jfree.org |
3. How to introduced Horizontal Scroll Bar for dateAxis(urgent) jfree.orgHow 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 ... |
4. DualAxis line and bar on a dateAxis jfree.org |
6. Issues with BarChart and DateAxis jfree.orgHi 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 ... |