Search found 2 matches

by donj@deltatee.com
Tue Jan 14, 2020 11:06 pm
Forum: JFreeChart
Topic: Automatic Bounds Calculation
Replies: 6
Views: 6280

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...
by donj@deltatee.com
Mon Jan 13, 2020 9:45 pm
Forum: JFreeChart
Topic: Two Windows, but only the second gets updated?
Replies: 3
Views: 6266

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.