Search found 93 matches

by RoyW
Fri Apr 25, 2008 6:46 pm
Forum: JFreeChart
Topic: Invisible Subplots in Combined Category Chart
Replies: 3
Views: 3504

I notice a couple of things BarRenderer bRenderer = (BarRenderer)subPlot.getRenderer(); bRenderer = new BarRenderer3D(12.0, 8.0 ); When you do this you are not creating a new bar renderer for the sub plot. You just create a new renderer and then never use it. Maybe you meant for(int i=0; i<alCharts....
by RoyW
Thu Apr 24, 2008 7:07 pm
Forum: JFreeChart
Topic: BUG:Vers 1.09, zoomRangeAxis + CombinedDomainXYPlot
Replies: 2
Views: 2892

Here is a small program to illustrate the point. If you right click, Zoom Out->Range Axis, nothing happens. If you put in the fix I suggested above it works. import org.jfree.chart.axis.*; import org.jfree.chart.plot.*; import org.jfree.chart.renderer.xy.*; import org.jfree.chart.*; import org.jfree...
by RoyW
Wed Apr 23, 2008 8:30 pm
Forum: JFreeChart
Topic: BUG:Vers 1.09, zoomRangeAxis + CombinedDomainXYPlot
Replies: 2
Views: 2892

BUG:Vers 1.09, zoomRangeAxis + CombinedDomainXYPlot

Hi, I have posted this in the bug tracking system at sourceforge but it didn't format the code too well so I am re-posting it here. Please feel free to delete one or the other. There appears to be a bug either in ChartPanel or CombinedDomainXYPlot when trying to zoom in/out on the range axis. ChartP...