bug « BarChart « JFreeChart Q&A





1. bug in layered bar renderer?    jfree.org

Hi, In continuation of my previous post, am not able to control the bar width in case of layered bar renderer. I had tried using setMaximumBarWidth(double percent); On looking up the source code (jfreechart ver 1.0.1), i noticed that the method calculateBarWidth is overriden and it doesnt use maximumBarWidth property. Is it by design? If so, is there are any other ...

2. StackedXYBarChart (Version 1.0.4) Bar Widths Bug ?    jfree.org

Hi, As refer to viewtopic.php?f=3&t=28237&p=78444&hilit=bar+width#p78444 : "The bar widths in an XYPlot come from the interval defined in the dataset - so you need to look at the dataset you are using, and how it defines the getStartXValue() and getEndXValue()." I have an XYPlot with a DefaultTableXYDataset set to it. The value of the dataset will be dynamic depending on the ...

3. Bug? Version 1.0.13 Histogram Bar Shadows    jfree.org

this is ALMOST negligible, but I noticed it when I was trying to rid myself of the shadows on the bars of the Histogram. When zooming in to the Histogram, the shadows don't zoom. They remain whatever size (surely usually the default 4-pixels). Perhaps a good fix would be to make the shadow offset comparable to the number of visible bins ...

4. Bug Report: RendererUtilities.findLiveItems() w/ bar chart    jfree.org

Hi, Just wanted to let you know that I'm fairly sure there is a bug in RendererUtilities.findLiveItems(). When searching for live items, dataset.getXValue() is called. If the dataset is an XYIntervalSeriesCollection, this means that an item is only considered live if the x midpoint is in the plot (as opposed to including an item if any part of the x interval ...

5. Bar graph bug    jfree.org

I'm not sure if it's a bug or not but I'm graphing a bunch of data points in a bar graph: Code: Select all File image = File.createTempFile("image","tmp"); DefaultCategoryDataset data = new DefaultCategoryDataset(); for(String s:results) ...