1. PeriodAxis - bugs found - including test case jfree.orgPeriodAxis - bugs found - including test case by mosabua Thu Jun 23, 2005 11:28 pm Hi! I think I found a bug with the PeriodAxis that persist even in the rc1 version. I have tried the following code slab with 0.9.21, pre2 and rc1. Code: Select all import java.awt.Color; import java.io.File; import java.io.IOException; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartUtilities; import org.jfree.chart.JFreeChart; ... |
2. BUG: PeriodAxis setRange() jfree.org |
3. setLabelPaint doesn't work in PeriodAxis jfree.org |
4. PeriodAxis problem jfree.orgThis is a bit messy, because the inherited methods for tick labels won't do anything. The PeriodAxis supports multiple "bands" of labels, which you configure by calling the setLabelInfo(PeriodAxisLabelInfo[]) method. The array contains one item for each band of labels, and one of the attributes of the PeriodAxisLabelInfo class is the labelPaint, which is the one you need to set. |
5. PeriodAxis - vertical tick labels? jfree.org |
6. Combining SymbolAxis and PeriodAxis for XYPlot causes Except jfree.orgHi all, I hope someone can help: I try to create a chart (XYPlot), where the Y-axis shall be a SymbolAxis and where the X-axis shall be configured for Timestamps (Date + Time!). The SymbolAxis works, but I have prolems with the X-axis. I have found the calss PeriodAxis, which might be what I need. But obviously I do something wrong. ... |
7. Wrong position for label on PeriodAxis jfree.orgWrong position for label on PeriodAxis by predrag Tue Jul 17, 2007 11:36 pm When multiple rows (PeriodAxisLabelInfo) are used labels are sometimes in the wrong place. To emphasize this problem I slightly modified data set in PeriodAxisDemo2.java as follows: Code: Select all /* -------------------- * PeriodAxisDemo2.java * -------------------- * (C) Copyright 2004, 2005, by Object Refinery Limited. * */ ... |
8. Need a help on PeriodAxis jfree.org |
9. periodaxis first day of week problem jfree.orgI am attempting to display weeks of year on a period axis using a periodAxisLabelinfo. However, I can not seem to get the first day of week to be generated correctly. It seems that the first day of the week is determined by the default Locale rather than the locale supplied in the simpleDateFormat in the constructor of PeriodAxisLabelInfo. At the ... |
10. PeriodAxis :: DateTime Interval jfree.org |
11. PeriodAxis- week jfree.orgTimeSeries sessionPlotted2PrimaryAxis = new TimeSeries("Session",Week.class); TimeSeries sessionRequestPlotted2SecondaryAxis = new TimeSeries("Request Session",Week.class); TimeSeries sessionLengthPlotted2SecondaryAxis = new TimeSeries("Session Length",Week.class); Week week = null; for(int i=0; i |
12. PeriodAxis bug? jfree.orgPeriodAxis bug? by Ted Hill Wed Sep 24, 2008 3:46 pm I modified the dataset for the PeriodAxisDemo2 so that the dates would wrap from December of one year to January of the next. The little vertical marker that separates the two different years, appears at the wrong location: instead of being on the Dec 31, Jan 1 divide, it ... |
13. PeriodAxis labels: possible to add tooltip? jfree.org |