1. Centering tick marks on a combined plot jfree.orgpublic class TimeSeriesDateValue extends TimeSeriesDataItem { String comment; public TimeSeriesDateValue(DateValue dateValue) { super(new Day(dateValue.getDate()), new Double(dateValue.getValue())); this.comment = dateValue.getComment(); } public String getComment() { return comment; } } |
3. MeterPlot - Unable to display Tick Labels jfree.orgMeterPlot - Unable to display Tick Labels by roy_chou Mon Apr 10, 2006 8:20 pm Hi, I have started using JFreeChart recently. I am trying to create Meter Chart using the MeterPlot class. I need to display the Tick Labels around the dial. However, I am unable to display the Tick Label even after doing the following: meterplot.setTickLabelsVisible(true); So, I ... |
4. unable to customize the Meter Plot Ticks jfree.orgI have set the tick size to 20 and my three values for the meter plot are ranges(0,16)(16-43)and (43-100) so i am getting the tick labels only at 0,16,43and 100 and the ticks at 0,16,20,40,43,60,80,100.my requirement is to show all these ticks but the tick labels only at the interval of 20 that is 0,20,40,60,80,100. One more problem i am getting ... |
5. custom xyplot tick labels jfree.orgIs there a way to suppress the printing of some/most of the x (domain) axis tick labels? I have a plot which uses a logarithmic domain axis. The default axis labels the ticks with nearest values. The user would like just the middle and last value to show (which happen to be 10 and 100). Any help is appreciated. - Lou ... |
6. Tick marks on an XYPlot jfree.orgHi, I get the [b]sun.dc.pr.PRException: endPath: bad path[/b] when the dataset contains extremely small values (1.10E-07, 1.55E-07, ...). I understand that this a Java bug after going through the forum. Updating my JDK to 1.5 got rid of the exception but the tick marks are not being rendered. Scaling the values is not an option for me. Any thoughts on how ... |
7. Control Ticks on XYPLot jfree.org |
8. SpiderWebPlot - Ticks jfree.org |
9. Meter Plot - customized major ticks jfree.orgI downloaded JFreeChart and tried meter plot. I am able to get the dial frame. There is a constructor for StandardDialScale class wherein i am able to provide double values for the initial and last ranges. I want to have date and time ranges. What do I need to do, to have a meter plot with say august-1-1980 to august-30-2008. Is ... |
10. Lowest Tick Label out of plot area jfree.org |
11. XY Plot - setting ticks and range jfree.orgXY Plot - setting ticks and range by mythgarr Sat Dec 12, 2009 12:30 am After some searching, I was finally able to get a customizer for Jasper Reports working. Unfortunately, now I've run into some questions on the JFreeCharts side of things. I am trying to build a chart which, instead of a legend, displays the Series names to ... |
12. Tick unit shift of 0.05 on xy plot ? jfree.org |
13. No plot line between 2 ticks that are outside the range jfree.orgTry this Code: Select all plot.setRenderer(new WhateverRendererYouAreUsing() { public XYItemRendererState initialise(Graphics2D g2, Rectangle2D dataArea, ... |