StackedXYAreaChart « Chart « JFreeChart Q&A





1. StackedXYAreaChart and Tooltips    jfree.org

Hello all, I noticed some threads regarding a bug in the StackedXYAreaRenderer and have followed the procedure to work-around it by setting the series rendering order to FORWARD. My question is if there is an issue with tooltips as well? My chart was generating tooltips correctly as a standard XYArea chart, but when I switched it to Stacked, the tooltips stopped ...

2. possible Bug in StackedXYAreaChart    jfree.org

I am getting the same effect: given two stacked series, the base of the upper series does not match the top of the bottom series, but instead follows a line from the initial y value of the bottom series to the end y value of the bottom series. It does not match in between. Your help is appreciated.

4. StackedXYAreaChart    jfree.org

Question about the StackedXYAreaChart. I looked at the Demo StackedXYAreaChartDemo1.java and noticed an issue. I have duplicated this with a program I wrote also. Depending on the size of the window the chart is displayed in, I sometimes see white lines in the chart. At the default resolution for the window, I don't see any lines. If I increase the size ...

6. Need help to understand how to use StackedXYAreaChart    jfree.org

Hi, I am trying to create a stacked area chart that would behave like this: I mean, I just need to stack rectangular areas. I am using ChartFactory.createStackedXYAreaChart and a single DefaultTableXYDataset to which I add series with only {(0.0, value}, (1.0, value)}. If I add just 2 series, I get the desired effect shown on the chart above. In this ...

7. small issue with StackedXYareaChart    jfree.org

Hello All I am trying to have stackedXYareachart. everything seems fine but when iam running it, iam getting an error while creating file, using chartutilities savechartasjeg and it is showing as java.lang.nullpointerexception. the whole stackedxyareachart is being used as a method in a scriptlet which is used as image in jasper report do i have to mention anything specifically or write ...

8. "Bug" in StackedXYAreaChart    jfree.org

9. StackedXYAreaChart and baseline    jfree.org

StackedXYAreaChart and baseline by mmcelarn Wed Apr 18, 2007 10:57 pm Hi, I'm new to jfree and I'm experimenting with the sample code. I'm trying to create a StackedXYAreaChart with two series. I've found that if the first and last values of the second series is not zero, a line is drawn through the area of the second series that ...





10. StackedXYAreaChart - Not able to get correct order of colors    jfree.org

StackedXYAreaChart - Not able to get correct order of colors by lukkumar Tue Jun 12, 2007 10:41 pm I have written a demo application for StackedXYAreaChart and what I have observed was that the colors for series were not displayed in the correct order. Please see the below code:: import java.awt.BasicStroke; import java.awt.Color; import java.awt.geom.Ellipse2D; import java.text.ParseException; import java.text.SimpleDateFormat; import ...

11. SegmentedTimeline with StackedXYAreaChart problem    jfree.org

I have two issues with the segmentedTimeline. I am using a StackedXYAreaChart and a DateAxis for the domain axis. Below is where I create the DateAxis. Problem 1) When the chart is drawn, where dates are missing (i.e. the weekends) the slope of the line between the data points are not correct. They don't seem to be calculated as if those ...