Search found 2 matches
- Tue Jan 14, 2020 11:06 pm
- Forum: JFreeChart
- Topic: Automatic Bounds Calculation
- Replies: 6
- Views: 10438
Re: Automatic Bounds Calculation
Here is a work around for this auto range without zero problem with createXYLineChart. Create an XYPLot XYItemRenderer renderer1 = new StandardXYItemRenderer(); this.YAxis = new NumberAxis(Graph_Ylabel); XYPlot subplot = new XYPlot((XYDataset) this.data, this.XAxis, this.YAxis, renderer1); this.YAxi...
- Mon Jan 13, 2020 9:45 pm
- Forum: JFreeChart
- Topic: Two Windows, but only the second gets updated?
- Replies: 3
- Views: 9671
Re: Two Windows, but only the second gets updated?
You probably have some static variables and/or functions if you copied the code from one the examples. Get rid of the static stuff.